0

如何手动获取 WP 小部件文本?

我尝试显示此代码:

<?php the_widget( 'WP_Widget_Text' ); ?>

但我什么都没有显示。

我需要在这个函数中传递什么具体的东西吗?我创建了小部件文本并将其命名为“跟我来”:

在此处输入图像描述

有任何想法吗?

4

2 回答 2

3

创建一个侧边栏并将文本小部件放在该侧边栏中。

假设您创建的侧边栏 ID 为“sidebar-2”

如果您只想显示 Text Widget,则不要在 sidebar-2 中添加其他小部件,即为 Text Widget 创建单独的侧边栏,因为侧边栏中包含的所有小部件都由以下函数调用。

您可以将此功能粘贴到您希望显示文本小部件的位置。

if ( is_active_sidebar( 'sidebar-2' ) ) : ?>
    <div id="tertiary" class="sidebar-container" role="complementary">
        <div class="sidebar-inner">
            <div class="widget-area">
                <?php dynamic_sidebar( 'sidebar-2' ); ?>
            </div><!-- .widget-area -->
        </div><!-- .sidebar-inner -->
    </div><!-- #tertiary -->
<?php endif; ?>

仅为 Text Widget 创建新的 siebar:

add_action( 'widgets_init', 'theme_slug_widgets_init' );
function theme_slug_widgets_init() {
    register_sidebar( array(
        'name' => __( 'Main Sidebar', 'theme-slug' ),
        'id' => 'sidebar-2',
        'description' => __( 'Widgets in this area will be shown on all posts and pages.', 'theme-slug' ),
        'before_widget' => '<li id="%1$s" class="widget %2$s">',
    'after_widget'  => '</li>',
    'before_title'  => '<h2 class="widgettitle">',
    'after_title'   => '</h2>',
    ) );
}

侧边栏的 ID 用于在我们的案例“sidebar-2”中调用所需位置的侧边栏

侧边栏的 ID 应该是小写的,并且可以包含“-”。

于 2016-03-04T05:48:09.627 回答
1

如果要调用小部件,请使用此功能

<?php the_widget( 'your-widget-title' ); ?> 

为您的小部件

<?php the_widget( 'Follow Me' ); ?>
于 2016-03-04T05:22:14.637 回答