首頁  >  文章  >  CMS教程  >  織夢dede如何讓channelartlist標籤支援currentstyle屬性

織夢dede如何讓channelartlist標籤支援currentstyle屬性

藏色散人
藏色散人原創
2020-01-09 09:41:212222瀏覽

織夢dede如何讓channelartlist標籤支援currentstyle屬性

織夢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=&#39;{dede:field.currentstyle/}&#39;><a href=&#39;{dede:field name=&#39;typeurl&#39;/}&#39;>{dede:field name=&#39;typename&#39;/}</a></li>
{/dede:channelartlist}

如果是目前欄位則li的class屬性顯示current,否則顯示class='' ,也可以修改currentstyle='這裡改為你需要的類別名稱'。

以上是織夢dede如何讓channelartlist標籤支援currentstyle屬性的詳細內容。更多資訊請關注PHP中文網其他相關文章!

陳述:
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn