织梦DedeCMS栏目列表调用中currentstyle中也支持autoindex的方法
而我们在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=”
“}
{/dede:channel}
☉免责声明:本站所有模板均来自用户分享和网络收集,仅供学习与参考,请勿用于商业用途,如果损害了您的权利,请联系网站客服,我们核实后会立即删除。
☉本站提供的源码、模板、软件工具等其他资源,都不包含技术服务,请大家谅解!
pbootcms模板网 » 织梦DedeCMS栏目列表调用中currentstyle中也支持autoindex的方法
☉本站提供的源码、模板、软件工具等其他资源,都不包含技术服务,请大家谅解!
pbootcms模板网 » 织梦DedeCMS栏目列表调用中currentstyle中也支持autoindex的方法