织梦dede:channel的currentstyle里面加入~autoindex~自增

前端之家收集整理的这篇文章主要介绍了织梦dede:channel的currentstyle里面加入~autoindex~自增前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

模板代码

{dede:channel type='top' row='10' currentstyle="<li class='hover'><a href='~typelink~' ~rel~><span>~typename~</span>~autoindex~</a></li>"} 
<li><a href='[field:typeurl/]' [field:rel/]><span>[field:typename/]</span>[field:global name=autoindex/]</a></li>
 {/dede:channel}

修改方法

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

$linkOkstr = str_replace("~typename~",$row['typename'],$linkOkstr);

在它的下面加入

$linkOkstr = str_replace("~autoindex~",$GLOBALS['autoindex'],$linkOkstr);
原文链接:https://www.f2er.com/dedecms/521348.html

猜你在找的Dedecms相关文章