30Blog

ZBlog开发教程:页面判断与首页和分类列表页分离

ZBlog页面判断的写法:

{if $type=='index'&&$page=='1'}  /*判断首页*/
{if $type=='category'}  /*判断分类页*/
{if $type=='article'}  /*判断日志页,不含独立页面,{if $article.Type==ZC_POST_TYPE_ARTICLE}(另一方案)*/
{if $type=='page'}  /*判断独立页面*/
{if $type=='author'}  /*判断用户页*/
{if $type=='date'}  /*判断日期页*/
{if $type=='tag'}  /*判断标签页*/

ZBlog首页和分类列表页分离的写法:

在index.php文件里作判断,分离模板。比如:

{if $type=='index'&&$page=='1'} 
{template:c_index}
{else}
{template:c_list}
{/if}

然后新建两个相应的模板文件:c_index.php和c_list.php

QQ售前咨询