快捷搜索:  汽车  科技

织梦如何替换标签(织梦channelartlist高亮并且让嵌套标签里的channel也支持currentstyle高亮)

织梦如何替换标签(织梦channelartlist高亮并且让嵌套标签里的channel也支持currentstyle高亮)global $dsql;改成打开 /include/taglib/channel.lib.php 找到然后 dede:channelartlist 标签里是高亮标签调用是{dede:field.currentstyle/}例如下面的写法

好长时间没更新了,今天开始逐步更新教程文章。dedecms、帝国cms以及其他商城、论坛等技术文章,会包含网络热点知识、黑客技术文章、安全防护文章等。欢迎大家关注公众号,转发朋友圈帮忙宣传。

dede:channelartlist嵌套dede:channel,如果想要channel也能使用currentstyle,那需要修改2步就能轻松实现二级高亮。

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/}

例如下面的写法

织梦如何替换标签(织梦channelartlist高亮并且让嵌套标签里的channel也支持currentstyle高亮)(1)

实现教程

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

global $dsql;

改成

global $dsql $_sys_globals;

继续找到

$row['id']==$typeid

改成

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

猜您喜欢: