POST TIME:2017-11-13 00:25
織夢dedecms模板網(wǎng)站里面默認只有channel標簽支持currentstyle屬性,但是今天在做一個資訊網(wǎng)站的時候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'] = '';
}
網(wǎng)上找到的一般沒有加 $typeids[$i]['id'] ==$refObj->TypeLink->TypeInfos['topid']
添加這個后才能對二級欄目也起作用
調(diào)用方法:
{dede:channelartlist typeid='2,3,4,5,6,7,8,9,10,11,12,13,14,15,16' currentstyle='current'}
{/dede:channelartlist}
如果是當前欄目則 li的class屬性顯示current,否則顯示class='' ,也可以修改currentstyle='這里改為你需要的類名'。
這樣channelartlist標簽也可以使用currentstyle屬性了。