正如@s\\u ha\\u dum在回答中所说的,您需要创建第二个侧栏并调用它。进一步阐述他的答案:
1) 注册侧栏。放入以下内容functions.php
:
if ( function_exists(\'register_sidebar\') ) {
register_sidebar(array(
\'name\' => \'Second Homepage Sidebar\',
\'id\' => \'second-homepage-sidebar\',
\'description\' => \'Secondary sidebar for the homepage\',
\'before_widget\' => \'<li id="%1$s" class="widget %2$s">\',
\'after_widget\' => \'</li>\',
\'before_title\' => \'<h2 class="widgettitle">\',
\'after_title\' => \'</h2>\',
));
}
2)重复
sidebar.php
并重命名文件
sidebar-two.php
.
3) 更改中引用的侧栏idsidebar-two.php
, e、 g。
<?php if ( is_active_sidebar( \'sidebar\' ) ) : ?>
<?php dynamic_sidebar( \'sidebar\' ); ?>
至
<?php if ( is_active_sidebar( \'second-homepage-sidebar\' ) ) : ?>
<?php dynamic_sidebar( \'second-homepage-sidebar\' ); ?>
3)在任何一个
home.php
或
front-page.php
(取决于网站的设置方式),您需要调用两个侧栏:
<?php get_sidebar(); ?>
<?php get_sidebar(\'two\'); ?>
4)开始在WP admin的侧栏中添加小部件。