織夢dedecms模板網站里面默認只有channel標簽支持currentstyle屬性,但是今天在做一個資訊網站的時候channelartlist也需要使用currentstyle屬性,怎么辦呢?找了很久,終于有了完美的解決辦法:
打開include aglibchannelartlist.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,3,4,5,6,7,8,9,10,11,12,13,14,15,16' currentstyle='current'}< a href="{dede:field name='typeurl'/}" title="{dede:field name='typename'/}">{dede:field name='typename'/}< /a> < /li>{/dede:channelartlist}如果是當前欄目則 li的class屬性顯示current,否則顯示class='' ,也可以修改currentstyle='這里改為你需要的類名'。這樣channelartlist標簽也可以使用currentstyle屬性了。