我发现了一个需要添加到多个侧边栏小部件区域的小部件。
但是,显然它已被编码,因此一旦将其从“可用小部件”拖到侧边栏小部件,它就会从“可用小部件”列表中消失。
这是来自functions.php的代码
if (function_exists('register_sidebar')) {
register_sidebar(array(
'name' => 'Blog Widgets',
'id' => 'sidebar-widgets',
'description' => 'Widget Area',
'before_widget' => '<div id="one" class="two">',
'after_widget' => '</div>',
'before_title' => '<h2>',
'after_title' => '</h2>'
));
}
这是我的 index.php 中的代码
<p><?php if ( !function_exists('dynamic_sidebar') || !dynamic_sidebar('Sidebar Widgets') ) : ?>
<?php endif; ?></p>
你的帮助将不胜感激
谢谢你