打开 include/arc.archives.class.php 文件
找到
1 |
$this->Fields[ 'typename' ] = $this->TypeLink->TypeInfos[ 'typename' ]; |
2 |
@SetSysEnv($this->Fields[ 'typeid' ],$this->Fields[ 'typename' ],$this->Fields[ 'id' ],$this->Fields[ 'title' ], 'archives' ); |
|
在其下边添加
//文章模板中的图片自动添加alt属性为标题
1 |
$this->Fields[ 'body' ] = str_ireplace(array( 'alt=""' , 'alt=''' ), '' ,$this->Fields[ 'body' ]); |
2 |
$this->Fields[ 'body' ] = preg_replace( "@ [s]{0,}alt[s]{0,}=["'s]{0,}[sS]{0,}["'s] @isU" , " " ,$this->Fields[ 'body' ]); |
3 |
$this->Fields[ 'body' ] = str_ireplace( "<img " , "<img alt="" .$this->Fields[ 'title' ]. "" " ,$this->Fields[ 'body' ]); |
|
//图集模板中的图片自动添加注释为标题
1 |
$this->Fields[ 'imgurls' ] = str_ireplace(array( 'alt=""' , 'alt=''' ), '' ,$this->Fields[ 'imgurls' ]); |
2 |
$this->Fields[ 'imgurls' ] = preg_replace( "@ [s]{0,}alt[s]{0,}=["'s]{0,}[sS]{0,}["'s] @isU" , " " ,$this->Fields[ 'imgurls' ]); |
3 |
$this->Fields[ 'imgurls' ] = str_ireplace( "<img " , "<img alt="" .$this->Fields[ 'title' ]. "" " ,$this->Fields[ 'imgurls' ]); |
|
本站资源均来源于网络或网友投稿,部分资源未经测试,难免存在BUG,所有资源只限于学习研究,不得商用。如使用本站下载的资源造成任何损失或发生侵权行为,均与本站无关。如不接受本声明请勿下载!本站资源如有侵权,请联系QQ:497149677核实后立即删除!
最客资源网 »
织梦dede将文章和图集里图片的ALT注释修改为文章标题的方法