首页 >

织梦DedeCMS将文章和图集里图片的ALT注释修改为文章标题的方法

  • 文章介绍

打开 include/arc.archives.class.php 文件

织梦DedeCMS将文章和图集里图片的ALT注释修改为文章标题的方法

找到

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

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

在其下边添加

//文章模板中的图片自动添加alt属性为标题

$this->Fields[‘body’] = str_ireplace(array(”,’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 " ,"Fields[‘title’].”\” “,$this->Fields[‘body’]);

//图集模板中的图片自动添加注释为标题

$this->Fields[‘imgurls’] = str_ireplace(array(”,’alt=\’\”),”,$this->Fields[‘imgurls’]);

$this->Fields[‘imgurls’] = preg_replace(“@ [\s]{0,}alt[\s]{0,}=[\”‘\s]{0,}[\s\S]{0,}[\”‘\s] @isU”,” “,$this->Fields[‘imgurls’]);

$this->Fields[‘imgurls’] = str_ireplace(“<img " ,"Fields[‘title’].”\” “,$this->Fields[‘imgurls’]);



织梦DedeCMS将文章和图集里图片的ALT注释修改为文章标题的方法
  • 织梦DedeCMS列表分页竖向排列变为横向排列的解决办法
  • 织梦DedeCMS列表分页竖向排列变为横向排列的解决办法 | 织梦DedeCMS列表分页竖向排列变为横向排列的解决办法 ...

    织梦DedeCMS将文章和图集里图片的ALT注释修改为文章标题的方法
  • 多行多列图集在模板中读取缩略图
  • 多行多列图集在模板中读取缩略图 | 多行多列图集在模板中读取缩略图 ...

    织梦DedeCMS将文章和图集里图片的ALT注释修改为文章标题的方法
  • Dede学习:织梦DedeCMS上传swf文件 文件名不显示为空色
  • Dede学习:织梦DedeCMS上传swf文件 文件名不显示为空色 | Dede学习:织梦DedeCMS上传swf文件 文件名不显示为空色 ...