1. 程式人生 > >DEDE文章內容中的圖片自動新增ALT屬性

DEDE文章內容中的圖片自動新增ALT屬性

修改檔案: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']);