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属性的主要内容,如果未能解决你的问题,请参考以下文章

织梦dedecms 调用文章图片数功能

js 将图片文件转换成base64

织梦Dedecms5.7为何不能设置采集软件频道,进入后台只有文章和图片采集,怎么办?

dedecms 内容页获取图片

dedecms 文章页图片改为绝对路径

dedecms获取文章中的图片代码