标签:tle eid 匹配 属性 style reg 方法 clu hive
方法一:正则匹配去除
打开include/ arc.archives.class.php,查找代码:
//设置全局环境变量
$this->Fields[‘typename‘] = $this->TypeLink->TypeInfos[‘typename‘];
@SetSysEnv($this->Fields[‘typeid‘],$this->Fields[‘typename‘],$this->Fields[‘id‘],$this->Fields[‘title‘],‘archives‘);
在其下面填写:
//去掉img的width和height
$this->Fields[‘body‘] = preg_replace("/style=\"width\:(.*?)\"/","",$this->Fields[‘body‘]);
保存,重新生成文章(静态网站),再查看源代码,我们会发现,自带的图片width和height属性 被成功的去掉了。
DedeCMS文章页去img图片width和height属性
标签:tle eid 匹配 属性 style reg 方法 clu hive
原文地址:https://www.cnblogs.com/lijea/p/9087277.html