要实现织梦让channelartlist标签支持currentstyle高亮属性方法

织梦让channelartlist标签支持currentstyle高亮属性方法  第1张

首先打开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'] = ''; 

         }

添加这个后才能对二级栏目也起作用

 

调用方法:

{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} 


转载请说明出处
知优网 » 织梦让channelartlist标签支持currentstyle高亮属性方法

发表评论

您需要后才能发表评论