织梦在channel标签的currentstyle中使用全局变量
织梦dedecms在channel标签的currentstyle中使用全局变量。
在 include/taglib/channel.lib.php line 140
$linkOkstr = str_replace(“~typename~”,$row[‘typename’],$linkOkstr);
后面补上一句
$linkOkstr = preg_replace_callback(‘/~global.(w+)?~/i’, function($matches)
{ return $GLOBALS[$matches[1]]; }, $linkOkstr);
即可如下使用:
{dede:channel type=’top’ row=’10’ currentstyle=”
“}
[field:typename/]
{/dede:channel}
☉免责声明:本站所有模板均来自用户分享和网络收集,仅供学习与参考,请勿用于商业用途,如果损害了您的权利,请联系网站客服,我们核实后会立即删除。
☉本站提供的源码、模板、软件工具等其他资源,都不包含技术服务,请大家谅解!
pbootcms模板网 » 织梦在channel标签的currentstyle中使用全局变量
☉本站提供的源码、模板、软件工具等其他资源,都不包含技术服务,请大家谅解!
pbootcms模板网 » 织梦在channel标签的currentstyle中使用全局变量