服务报价 | 域名主机 | 网络营销 | 软件工具| [加入收藏]
 热线电话: #
当前位置: 主页 > php教程 > dedecms教程 >

DedeCMS5.7文章图片alt自动调用文章标题的修改方法

时间:2016-04-11 00:41来源: 作者: 点击:
在网站中图片有alt无论是对网站还是对搜索引擎都是有好处的,之前给也大家介绍过dedeCMS5.7自动给图片添加alt属性的修改方法

在网站中图片有alt无论是对网站还是对搜索引擎都是有好处的,之前给也大家介绍过,但是想要alt自动调用文章标题还要再做调整。
找到 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');
后面加上如下代码:
//替换文章BODY Alt为文档标题
$this->Fields['body'] = str_ireplace(array('alt=""','alt=\'\''),'',$this->Fields['body']);
$this->Fields['body'] = preg_replace("@ [\s]{0,}alt[\s]{0,}=[\"'\s]{0,}[\s\S]{0,}[\"'\s] @isU"," ",$this->Fields['body']);
$this->Fields['body'] = str_ireplace("<img " ,"<img alt=\"".$this->Fields['title']."\" ",$this->Fields['body']);

(责任编辑:最模板)
顶一下
(0)
0%
踩一下
(0)
0%
------分隔线----------------------------
栏目列表
热点内容