織夢channelartlist高亮并且讓嵌套標簽里的channel也支持currentstyle高亮
摘要:
dede:channelartlist欄目高亮實現教程 打開 /include/taglib/channelartlist.lib.php 找到 $pv-Fields['typeurl'] = GetOneTypeUrlA($typeids[$i]); 在它下面加入 if($typeids[$i]['id'] == $refObj-TypeLink-TypeInfos['id'] || $typeids[$i]['id'] == $ref
dede:channelartlist欄目高亮實現教程
打開 /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['reid'] || $typeids[$i]['id'] == $refObj->TypeLink->TypeInfos['topid'] || $typeids[$i]['id'] == GetTopid($refObj->TypeLink->TypeInfos['id']) )
{
$pv->Fields['currentstyle'] = $currentstyle ? $currentstyle : 'current';
}
else
{
$pv->Fields['currentstyle'] = '';
}
然后 dede:channelartlist 標簽里是高亮標簽調用是
{dede:field.currentstyle/}
例如下面的寫法
嵌套標簽
<p class="nav">
<ul>
{dede:channelartlist row=7 typeid=top currentstyle=current}
<li class="{dede:field.currentstyle/}">
<a href="{dede:field.typeurl/}">{dede:field.typename/}</a>
<ul>
{dede:channel type='son' noself='yes' row='10' currentstyle="<li class='hover'><a href='~typelink~'>~typename~</a></li>"}
<li><a href="[field:typeurl/]">[field:typename/]</a></li>
{/dede:channel}
</ul>
</li>
{/dede:channelartlist}
</ul>
</p>
channelartlist嵌套channel標簽也高亮實現教程
打開 /include/taglib/channel.lib.php 找到
global $dsql;
改成
global $dsql,$_sys_globals;
繼續找到
$row['id']==$typeid
改成
$row['id']==$typeid || $row['id']==$_sys_globals['typeid']
本文鏈接:http://www.sunflowerstaging.com//dedecmsjiaocheng/chengxukaifa/182931.html
版權聲明:本站資源均來自互聯網或會員發布,如果侵犯了您的權益請與我們聯系,我們將在24小時內刪除!謝謝!
標簽云