Wordpress Widgets要么没有显示,要么不完整

时间:2016-09-23 22:00:38

标签: php wordpress widget wordpress-theming

我有一个wordpress主题与小部件有问题。到目前为止,我只有3个小部件的侧边栏:"搜索","最近的帖子"和"类别"。然而,"类别"小部件仅显示1个类别(应该有4个)。并且它说1个类别有2个帖子,即使有4个注册。

我尝试通过创建一个包含所有四个类别链接的自定义菜单来解决此问题。但是在管理员或非管理员视图中都没有显示这些链接。有没有人知道发生了什么?

这就是我的functions.php:

if ( function_exists('register_sidebar') )
register_sidebar(array(
  'name' => __('Sidebar 1', 'builder'),
  'id' => 'sidebar-1',
  'before_widget' => '',
  'after_widget' => '',
  'before_title' => '<h2>',
  'after_title' => '</h2>',
));

这是在我的header.php文件中:

dynamic_sidebar( 'sidebar-1' );

有关如何解决此问题的任何想法?

0 个答案:

没有答案