指定某個分類在導(dǎo)航不顯示

  

導(dǎo)航代碼
  1. {loop type('0','-hide') $t}<a href="{$t[url]}" {if isset($topid) && $topid==$t[typeid]}class="on"{/if}><span>{$t[typename]}</span></a>
     
  2. {/loop}
復(fù)制代碼
指定ID為1的分類在導(dǎo)航不顯示,代碼如下
  1. {php if($t['typeid']==1) continue;}
復(fù)制代碼
將上面代碼加到 導(dǎo)航代碼  如下
  1. {loop type('0','-hide') $t}{php if($t['typeid']==1) continue;}
     
  2. <a href="{$t[url]}" {if isset($topid) && $topid==$t[typeid]}class="on"{/if}><span>{$t[typename]}</span></a>
     
  3. {/loop}
復(fù)制代碼
如果多個欄目不顯示
  1. {php if($t['typeid']==1 || $t['typeid']==2) continue;}
復(fù)制代碼