张文保的博客
张文保 · Paul Zhang

Engineering the Future

织梦DEDECMS去掉内容页图片的长和宽属性

织梦后台上传图片时,会自动加上长宽参数,但这样在手机版就会发现图片变形了,因为固定了长宽。所以需要去掉自动增加长宽参数。

打开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']);

本文标题:《织梦DEDECMS去掉内容页图片的长和宽属性》
网址:https://zhangwenbao.com/dedecms-removes-height-width.html
作者:张文保
发布时间:2021-02-10
许可协议:CC BY-NC-SA 4.0
发表新评论
SSL安全认证