织梦模板嵌套标签里的currentstyle高亮

2025-08-04 0 11
  • 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/}
嵌套标签
<div 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>
</div>
  • channelartlist嵌套channel标签也高亮实现教程
打开 /include/taglib/channel.lib.php 找到
global $dsql;
改成
global $dsql,$_sys_globals;
继续找到
$row[‘id’]==$typeid
改成
$row[‘id’]==$typeid || $row[‘id’]==$_sys_globals[‘typeid’]
收藏 (0) 打赏

感谢您的支持,我会继续努力的!

打开微信/支付宝扫一扫,即可进行扫码打赏哦,分享从这里开始,精彩与您同在
点赞 (0)

版权声明:所有的源码、软件和资料,不得使用于非法商业用途,不得违反国家法律,一切关于该资源商业行为与本站无关。

免费cms模板 dedecms教程 织梦模板嵌套标签里的currentstyle高亮 https://www.mianfeicms.com/1091.html

相关文章

发表评论
暂无评论