zblog主题制作的时候,首页的侧边栏和二级分类页面的侧边栏会不同,不同的二级分类页面侧边栏也可能不同。
如果文章的摘要列表这块是相同的,就不必要为不同的分类设置不同的模板文件了,直接用一个if判断就可以打造不同的侧边栏。
zblog后台的侧边栏一共有5中,分别对应{template:sidebar}、{template:sidebar2}、{template:sidebar3}、{template:sidebar4}、{template:sidebar5}的调用方式。
然后只需要根据分类的id或者名字来判断就可以了。
1、先找到分类的id或者名字。
2、在index.php模板文件中,把代码改成如下:
<div id="divSidebar" class="sidebar"> {if $category.ID==1} {template:sidebar2} {elseif $category.ID==2} {template:sidebar3} {else} {template:sidebar} {/if} </div>
这样就可以不同分类下面的页面使用不同侧边栏了。
发表评论:
◎请发表你卖萌撒娇或一针见血的评论,严禁小广告。