WordPress 中的多个小部件侧边栏
我已经使用以下代码使用我的functions.php 文件成功创建了多个wordpress 小部件侧边栏,
<?php
if(function_exists('register_sidebar')){
register_sidebar(array('name' => 'mrskitson'));
register_sidebar(array('name' => 'mrskitson2'));
}
?>
但是当我尝试将它们包含在页面中时,即使我按名称指定第二个侧边栏,也只会显示第一个侧边栏。其代码如下。
<?php if ( !function_exists('dynamic_sidebar') || !dynamic_sidebar('mrskitson2') ) : ?>
感谢您提前的帮助。
I have succesfuly created multiple wordpress widgetized sidebars with my functions.php file with the following code
<?php
if(function_exists('register_sidebar')){
register_sidebar(array('name' => 'mrskitson'));
register_sidebar(array('name' => 'mrskitson2'));
}
?>
However When I try and include them in a page only the first one shows up even when I specify the second one by name. The code for that is below.
<?php if ( !function_exists('dynamic_sidebar') || !dynamic_sidebar('mrskitson2') ) : ?>
Thanks for the help in advance.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
尝试添加一个 ID,我相信这就是它的关键所在。
Try including an ID, I believe that is what it is keyed on.