要實現(xiàn)織夢讓channelartlist標(biāo)簽支持currentstyle高亮屬性方法

首先打開include\taglib\channelartlist.lib.php

織夢讓channelartlist標(biāo)簽支持currentstyle高亮屬性方法

找到

$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'] = ''; 

         }

添加這個后才能對二級欄目也起作用

調(diào)用方法:

{dede:channelartlist typeid='4' currentstyle='current'} 

 <li class='{dede:field.currentstyle/}'><a href='{dede:field name='typeurl'/}'>{dede:field name='typename'/}</a></li>  

 {/dede:channelartlist}


?