欢迎来到素材无忧网,按 + 收藏我们
登录 注册 退出 找回密码

织梦图片自动加上alt和title等属性的修改方法

时间: 2018-12-03 08:13 阅读: 作者:素材无忧网

找到include文件夹下面的arc.archives.class.php文件,打开,记得不能用记事本打开,可以在dedecms后台文件管理里面打开或者notepad++等软件打开。

 

找到下面这段代码:

//设置全局环境变量

$this->Fields['typename'] = $this->TypeLink->TypeInfos['typename'];

@SetSysEnv($this->Fields['typeid'],$this->Fields['typename'],$this->Fields['id'],$this->Fields['title'],'archives');

}

//完成附加表信息读取

unset($row);

大概在第204行。

 然后在

@SetSysEnv($this->Fields['typeid'],$this->Fields['typename'],$this->Fields['id'],$this->Fields['title'],'archives');

 下面添加:

$this->Fields['body'] = str_ireplace("<img " ,"<img alt='".$this->Fields['title'].",织梦无忧' ",$this->Fields['body']);

$this->Fields['imgurls'] = str_ireplace("<img " ,"<img alt='".$this->Fields['title'].",织梦无忧' ",$this->Fields['imgurls']);

$this->Fields['introduce'] = str_ireplace("<img " ,"<img alt='".$this->Fields['title'].",织梦无忧' ",$this->Fields['introduce']);

其中的“织梦无忧”可以更换成你想要更换的文字。

 

版权声明: 本站资源均来自互联网或会员发布,如果侵犯了您的权益请与我们联系,我们将在24小时内删除!谢谢!

转载请注明: 织梦图片自动加上alt和title等属性的修改方法

标签:  
模板推荐