欢迎来到入门教程网!

dedecms

当前位置:主页 > CMS教程 > dedecms >

织梦DedeCMS栏目列表调用中currentstyle中也支持autoindex的方法

来源:本站原创|时间:2021-08-05|栏目:dedecms|点击:

而我们在DedeCMS建站过程中,调用顶级栏目之类的会用到currentstyle属性,来实现当前栏目的高亮显示,而如果栏目列表的样式名呈递增的时候,就不能直接在currentstyle中加autoindex或itemindex了,这个时候需要我们修改下底层文件来实现,具体方法如下:
 
一、打开include/taglib/channel.lib.php中搜索(大概在第140行):
 
 
$linkOkstr = str_replace("~typename~",$row['typename'],$linkOkstr);
 
二、在下方加入代码:
 
 
$linkOkstr = str_replace("~autoindex~",$GLOBALS['autoindex']+1,$linkOkstr);
 
DedeCMS栏目列表调用中currentstyle中也支持autoindex的方法
 
修改前
 
DedeCMS栏目列表调用中currentstyle中也支持autoindex的方法
 
修改后
 
释义:这里是加一递增,如果是其他递增形式,改对应数字即可。
 
三、调用方法:
 
 
{dede:channel type='top' row='8' currentstyle="<li class='on'><a class='box~autoindex~' href='~typelink~'>~typename~</a></li>"}
<li><a class='box[field:global name=autoindex runphp="yes"]@me=@me+1;[/field:global]' href='[field:typelink/]'>[field:typename/]</a></li>
{/dede:channel}

 

上一篇:织梦删除栏目提示删除成功但却没有把栏目删掉的解决方法

栏    目:dedecms

下一篇:织梦DedeCMS增加和编辑文档时自动保存文章的方法

本文标题:织梦DedeCMS栏目列表调用中currentstyle中也支持autoindex的方法

本文地址:https://www.xiuzhanwang.com/a1/dedecms/16267.html

更多dedecms

您可能感兴趣的文章

阅读排行

本栏相关

随机阅读

网页制作CMS教程网络编程软件编程脚本语言数据库服务器

如果侵犯了您的权利,请与我们联系,我们将在24小时内进行处理、任何非本站因素导致的法律后果,本站均不负任何责任。

联系QQ:835971066 | 邮箱:835971066#qq.com(#换成@)

Copyright © 2002-2020 脚本教程网 版权所有