调用侧栏的是sidebar.php和页脚footer.php这两个文件!
不管是首页的index.php还是单篇日志页面的single.php,在文件的最后面,总是有这么两行代码:
< ?php get_sidebar(); ?>
< ?php get_footer(); ?>
我们需要分两种情况说明:
第一种情况:如果不使用主题的Widgets,那么只要两步就能完成对不同侧边栏的调用。
找到single.php文件里的:
< ?php get_sidebar(); ?>
修改为:
< ?php include_once("sidebar2.php"); ?>
上传并覆盖single.php,刷新,搞定!
第二种情况:如果你使用了Widgets,只需要4步,也就能实现对不同侧边栏的调用。
重复第一种情况中新建sidebar2.php的步骤。
接着打开function.php,找到类似的代码:
< ?php
if ( function_exists('register_sidebar') )
register_sidebar(array(
'before_widget' => '',
'after_widget' => ,
'before_title' => '
));
这几行代码是一封”申请书”,向Wordpress申请了一个Widget。如果要在不同面面显示不同的侧栏,并且这个侧栏是要支持Widget的,那么需要向Wordpress再写一封”申请书”申请一个Widgets。并且这封申请书是有名字的,名字格式应该这样写: ‘name’ => ‘名字’,名字应该和后面sidebar2.php调用些widgets的名字保持一致,那应该这样写:
if ( function_exists('register_sidebar') )
register_sidebar(array(
'name' => 'sidebar2',
'before_widget' => '< id="%1$s" class="widget %2$s">',
'after_widget' => ,
'before_title' => '
',
'after_title' => '
',
));
将上面这句加到原先的”申请书”后面去。现在,需用将sidebar2.php中原来调用默认Widgets的代码改为调用sidebar2这个刚申请的Widgets。打开Sidebar2.php,找到这样的代码:
< ?php if ( function_exists('dynamic_sidebar') && dynamic_sidebar() ) : else : ?>
< ?php endif; ?>
修改为:
< ?php if ( function_exists('dynamic_sidebar') && dynamic_sidebar(sidebar2) ) : else : ?>
< ?php endif; ?>
现在做最后一步的工作,打开single.php,找到:
< ?php get_sidebar(); ?>
修改为:
< ?php include_once("sidebar2.php"); ?>
保存文件,上传。
现在去后台的Widgets设置,会发现在下拉列表中多出一个Widget了,它的名字为Sidebar2,现在需要为他添加上一些东西。
概括一下第二种情况的大体步骤:
* 在functions.php”申请”一个Widgets
* 在single.php中调用sidebar2.php
* 将sidebar2.php中调用的widgets修改为sidebar
* 拖一下你的Widgets
到此,也就完成了不同页面显示不同sidebar的教程!