zblogPHP模板制作中常用到if語句,特別是頁面的判斷,比如某些模塊只需要在首頁顯示,抑或者只在文章頁面顯示,那么用if判斷是最快最省力的一種方式了。
可能剛接觸zblog模板的用戶還不太清楚在zblogPHP主題模板制作需要用到哪些if,下面詳細說明下:
{if $type=='index'&&$page=='1'} /*判斷首頁*/ {template:index_default} {elseif $type=='category'} /*判斷分類頁*/ {$category.Name} {elseif $type=='article'} /*判斷日志頁,不含獨立{$article.Title} {template:index_artile} {elseif $type=='page'} /*判斷獨立頁面*/ {template:index_page} {elseif $type=='author'} /*判斷用戶頁*/ {$author.Name}/{$author.StaticName} {elseif $type=='date'} /*判斷日期頁*/ date- {$title} {elseif $type=='tag'} /*判斷標簽頁*/ {$tag.Name} {else} {$title} {/if}
以上種種if,都屬于最基本的判斷,在制作帶有公共側欄模板的時候特別需要這種判斷,所以需要做zblog模板的要死記硬背,至少收藏吧。