wordpress 没有sidebar.php如何让侧边栏小工具显示

2024-12-04 18:56:48
推荐回答(1个)
回答1:

侧边栏只会在sidebar.php里才显示吗?这肯定不是的。

要使用小工具,需要两步

第一步,在functions.php声明小工具,如:

function twentyfourteen_widgets_init() {
  register_sidebar( array(
        'name'          => __( 'Primary Sidebar', 'twentyfourteen' ),
        'id'            => 'sidebar-1',
        'description'   => __( 'Main sidebar that appears on the left.', 'twentyfourteen' ),
        'before_widget' => '',
        'after_widget'  => '',
        'before_title'  => '',
        'after_title'   => '',
    ) );
}
add_action( 'widgets_init', 'twentyfourteen_widgets_init' );

第二步,在需要显示小工具的地方,调用小工具即可,如: 

  
    
        
    

    

如此两步,想在哪显示小工具都可以的。

相关问答