修改文件:Include/ arc.archives.class.php
模板標籤:{dede:field.body/} ,若是是其它字段,能夠修改$this->Fields['body'] 爲其它的字段名。
效率說明:使用了正則處理,會下降一些生成速度,若是數據量小,則能夠忽略。
修改方法:
首先查找
//設置全局環境變量
$this->Fields['typename'] = $this->TypeLink->TypeInfos['typename'];
SetSysEnv($this->Fields['typeid'],$this->Fields['typename'],$this->Fields['aid'],$this->Fields['title'],'archives');
在其代碼下面填寫
//替換圖片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']);php