1. 程式人生 > >dede讓channelartlist標籤支援currentstyle屬性 完美解決

dede讓channelartlist標籤支援currentstyle屬性 完美解決

開啟include\taglib\channelartlist.lib.php
找到

$pv->Fields['typeurl'] = GetOneTypeUrlA($typeids[$i]);


在此行程式碼下方增加以下程式碼:

if($typeids[$i]['id'] == $refObj->TypeLink->TypeInfos['id'] || $typeids[$i]['id'] == $refObj->TypeLink->TypeInfos['topid'] ){
             $pv->Fields['currentstyle'] = $currentstyle ? $currentstyle : 'current';
         }
         else{
             $pv->Fields['currentstyle'] = '';
         }
 


網上找到的一般沒有加$typeids[$i]['id'] ==$refObj->TypeLink->TypeInfos['topid']
新增這個後才能對二級欄目也起作用
呼叫方法:

{dede:channelartlist typeid='2' currentstyle='current'}
 <li class='{dede:field.currentstyle/}'><a href='{dede:field name='typeurl'/}'>{dede:field name='typename'/}</a></li>
 。。。
 {/dede:channelartlist}
 


如果是當前欄目則 li的class屬性顯示current,否則顯示class='' ,也可以修改currentstyle='這裡改為你需要的類名'。