您不需要插件来拥有额外的侧边栏。您应该能够构建带有任意数量侧边栏的主题模板。当我在 WordPress 中创建自定义主题时,我使用了960 CSS Grid的变体(另一个不错的是更新的1140px CSS Grid System,它是流动的)。
要注册您的侧边栏以接受小部件,请将此代码插入您的 functions.php 文件中:
// Widget Areas //
if ( function_exists('register_sidebars') ) {
// Primary sidebar widget
register_sidebar( array(
'name' => __( 'Blog Sidebar', 'unique' ),
'id' => 'blog-sidebar',
'description' => __( 'The sidebar widget area for the blog.', 'unique' ),
'before_widget' => '<li id="%1$s" class="widget-container %2$s">',
'after_widget' => '</li>',
'before_title' => '<h2 class="widget-title">',
'after_title' => '</h2>',
) );
register_sidebar( array(
'name' => __( 'Left Sidebar', 'unique' ),
'id' => 'left-sidebar',
'description' => __( 'The left sidebar widget area for pages.', 'unique' ),
'before_widget' => '<li id="%1$s" class="greenGradient widget-container %2$s">',
'after_widget' => '</li>',
'before_title' => '<h2 class="widget-title greenbar center">',
'after_title' => '</h2>',
) );
register_sidebar( array(
'name' => __( 'Right Sidebar', 'unique' ),
'id' => 'right-sidebar',
'description' => __( 'The right sidebar widget area for pages.', 'unique' ),
'before_widget' => '<li id="%1$s" class="redGradient widget-container %2$s">',
'after_widget' => '</li>',
'before_title' => '<h2 class="widget-title redbar center">',
'after_title' => '</h2>',
) );
在这种情况下,我为博客注册了一个侧边栏,然后分别用于右侧边栏和左侧边栏。
在我的主题目录中,我有三个 sidebar.php 文件。博客侧边栏文件是默认的 sidebar.php 文件。另外两个被命名为sidebar-left.php 和sidebar-right.php。每个侧边栏都有相应的代码,如下所示:
<?php // blog widget area
if ( is_active_sidebar( 'blog-sidebar' ) ) : ?>
<ul>
<?php dynamic_sidebar( 'blog-sidebar' ); ?>
</ul>
<?php endif; // end blog widget area ?>
将此代码包装在侧边栏中的 div 中,并确保将“博客侧边栏”名称更改为每个侧边栏的名称。