dedecms织梦让channelartlist标签支持currentstyle属性
Posted God丶魔多
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了dedecms织梦让channelartlist标签支持currentstyle属性相关的知识,希望对你有一定的参考价值。
打开include\taglib\channelartlist.lib.php 大约93行
找到:
$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‘] = ‘‘; }
在前台模板调用:
{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}
以上是关于dedecms织梦让channelartlist标签支持currentstyle属性的主要内容,如果未能解决你的问题,请参考以下文章