欧美一区二区三区,国内熟女精品熟女A片视频小说,日本av网,小鲜肉男男GAY做受XXX网站

zblogPHP模板 - 常用if判斷

老白7年前2950瀏覽0評論

是否登陸判斷:

{if $user.ID>0}{$user.StaticName}{/if}

CMS判斷:

{template:header}
{if $type=='index'&&$page=='1'}
    {template:post-cms}
{else}
    {template:post-category}
{/if}
{template:footer}

側(cè)欄模塊判斷:

{if $type=='index'}
     {template:sidebar}
    {elseif $type=='category'} 
     {template:sidebar2}
    {elseif $type=='article'}
     {template:sidebar3}
    {elseif $type=='page'}
     {template:sidebar4}
    {else}
     {template:sidebar5}
    {/if}

single.php文章、頁面判斷:

{template:header}
    {if $article.Type==ZC_POST_TYPE_ARTICLE}
    {template:post-single}
    {else}
    {template:post-page}
    {/if}
{template:footer}

評論是否開啟判斷:

{if !$article.IsLock}{template:comments} {/if}
{if $article.CommNums>0}是否有評論{/if}