Dedecms图片加上Alt和Title等属性的修改方法
发布时间:2013-01-22 16:02:53 作者:佚名 我要评论
Dedecms发表资讯等等上传的图片全部没有title,虽然有这个选项却不生效,于是就研究了一下,发现只需要在相关文件添加一段代码即可。先告知大家方法,希望更多的人能够受益
找到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']);
其中的“脚本之家”可以更换成你想要更换的文字。
找到下面这段代码:
复制代码
代码如下://设置全局环境变量
$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']);
其中的“脚本之家”可以更换成你想要更换的文字。
相关文章
- HTML的img标签:alt属性和title属性,很多人看来对这两个属性感到迷惑,所以我写下我的想法,如何去用它们2014-02-20
- DEDE_V5.3 实现给内容中的图片添加标题ALt标记织梦优秀网,发单接单,优秀的任务平台!程序版本:V5.3X 修改文件:Include/ arc.archives.class.php 修改方法:2009-06-07
- XHTML是CSS布局的基础,webjx.com一直强调XHTML知识的学习,重视语义和文档的结构。title 和alt 属性,给我最直观的感受就是,可以提高文档的适应性,并合理提高关键词密度2009-04-02
- 下面小编就为大家带来一篇关于alt和title的用法区别详解。小编觉得挺不错的,现在就分享给大家,也给大家做个参考。一起跟随小编过来看看吧2016-06-08
最新评论