首页 > CMS > 织梦DEDE > 正文

织梦让channelartlist标签里的channel支持currentstyle

2024-07-12 09:01:27
字体:
来源:转载
供稿:网友

织梦标签channelartlist默认是不支持多层嵌套后使用currentstyle高亮,修改一个文件可以实现

嵌套标签

<div>    <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><a href='~typelink~'>~typename~</a></li>"}                <li><a href="[field:typeurl/]">[field:typename/]</a></li>                {/dede:channel}            </ul>        </li>        {/dede:channelartlist}    </ul></div>

 

实现教程

1、打开 /include/taglib/channel.lib.php 找到

global $dsql;

改成

global $dsql,$_sys_globals;

继续找到

$row['id']==$typeid

改成

$row['id']==$typeid || $row['id']==$_sys_globals['typeid']

完成。


发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表