您是否创建了同时包含左侧和右侧栏的CSS?
/*----------------------------------------------------
2 sidebars
---------------------------------------------------- */
#sidebar {
Float:left;
width:20%;
display:block;
}
#sidebar-core {
margin-right:20px;
}
#main {
float: left;
width: 65%;
display: block;
}
#intro,
#main-core {
margin-right: 20px;
margin-left: 20px;
}
#sidebarright {
display: block;
float: left;
width: 15%;
}
#sidebarright-core {
margin-left: 20px;
}
在你的主题中以你的风格上传这个。把它命名为两个边栏。css,然后转到您的函数。php,需要一次。您必须定义路径,例如:
wp_register_style( \'twosidebars\', get_template_directory_uri() . \'/styles/layouts/two-sidebar.css\', \'\', \'1.1\' );
您将看到需求的其他侧栏选项。模仿你所做的。
现在您需要一个新的侧边栏。php调用CSS,因此创建一个新的CSS并将其命名为sidbar2。php并插入如下内容:
<div id="sidebar">
<div id="sidebar-core">
<?php do_action( \'before_sidebar\' ); ?>
<?php if ( ! dynamic_sidebar() get_sidebar() ); ?>
</div>
</div><!-- #sidebar -->
<div id="sidebarright">
<div id="sidebarright-core">
<?php do_action( \'before_sidebar\' ); ?>
<?php if ( ! dynamic_sidebar() get_sidebar(sidebar2) ); ?>
</div>
</div><!-- #sidebar2 -->
现在,所有这些都假设您已经在函数中将数组提要栏2注册为数组。php。这还假设您编辑了样式表,以包含侧栏2的单独样式。