DedeCMS文章页去img图片width和height属性
Posted 流芳
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了DedeCMS文章页去img图片width和height属性相关的知识,希望对你有一定的参考价值。
方法一:正则匹配去除
打开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属性的主要内容,如果未能解决你的问题,请参考以下文章