channelartlist標(biāo)簽完美支持currentstyle屬性,實(shí)現(xiàn)自動加載當(dāng)前欄目CSS樣式,可以用來標(biāo)識當(dāng)前欄目位置的CSS,解決方法如下:
打開文件include\taglib\channelartlist.lib.php
找到:
創(chuàng)新互聯(lián)專注為客戶提供全方位的互聯(lián)網(wǎng)綜合服務(wù),包含不限于做網(wǎng)站、成都網(wǎng)站制作、武鳴網(wǎng)絡(luò)推廣、小程序制作、武鳴網(wǎng)絡(luò)營銷、武鳴企業(yè)策劃、武鳴品牌公關(guān)、搜索引擎seo、人物專訪、企業(yè)宣傳片、企業(yè)代運(yùn)營等,從售前售中售后,我們都將竭誠為您服務(wù),您的肯定,是我們最大的嘉獎;創(chuàng)新互聯(lián)為所有大學(xué)生創(chuàng)業(yè)者提供武鳴建站搭建服務(wù),24小時(shí)服務(wù)熱線:13518219792,官方網(wǎng)址:www.cdcxhl.com
$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'] = '';
}
添加這個(gè)后才能對二級欄目也起作用
調(diào)用方法:
{dede:channelartlist typeid='2' currentstyle='current'}
{dede:field name='typename'/}
{/dede:channelartlist}
如果是當(dāng)前欄目則 li的class屬性顯示current,否則顯示class='' ,也可以修改currentstyle='這里改為你需要的類名'。
也可以與arclist標(biāo)簽相結(jié)合使用,
這樣調(diào)用:
{dede:channelartlist typeid='2' currentstyle='current'}
{dede:field name='typename'/}
{dede:arclist titlelen='42' row='10' current}
[field:array runphp='yes']
if(@me['currentstyle']){
@me = @me['currentstyle'];
}else{
@me = "{@me['title']} ";
}
[/field:array]
{/dede:arclist}
{/dede:channelartlist}