織夢dede如何讓channelartlist標籤支援currentstyle屬性?
織夢dede讓channelartlist標籤支援currentstyle屬性
推薦學習:織夢cms
開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='2' currentstyle='current'} <li class='{dede:field.currentstyle/}'><a href='{dede:field name='typeurl'/}'>{dede:field name='typename'/}</a></li> {/dede:channelartlist}
如果是目前欄位則li的class屬性顯示current,否則顯示class='' ,也可以修改currentstyle='這裡改為你需要的類別名稱'。
以上是織夢dede如何讓channelartlist標籤支援currentstyle屬性的詳細內容。更多資訊請關注PHP中文網其他相關文章!