zblog主题中,特别是cms模板常需要为分类列表增加多种模板,在使用模板的时候就需要对某些分类进行设置、指定!
以前的方法是编辑分类,然后在模板中进行选择,对于一些不太熟悉zblog的同学此方法有些麻烦了,并不适合zblogPHP新手!
今天来分享一个方法,个人喜欢使用,可直接在后台主题配置内,直观的为某些分类指定模板!
首先,在后台主题配置内增加设置方法:zblogPHP主题配置内点击获取(输入)多分类ID的JS特效
为某个模板选择分类为:
$zbp->Config('ydproduct')->homecateid
其次,在前台模板中修改:
{if $type=='index'&&$page=='1'} {template:post-cms} {elseif $type=='tag'} {template:post-category} {else} {php} $cateid = $category->ID; $subject = $zbp->Config( 'ydbaijia' )->catestyle;$pattern = '/(^|,)'.$cateid.'(,|$)/'; {/php} {if preg_match($pattern, $subject)} {template:post-category2} {else} {template:post-category} {/if} {/if}
通过这样一个简单的设置就可以直接在后台的主题配置内为分类指定模板!