dede源碼織夢(mèng)模板下載為文章圖片自動(dòng)添加ALT標(biāo)簽
時(shí)間: 2018-11-30 10:13
閱讀: 次
作者:素材無憂網(wǎng)
用DedeCMS在做圖片站,一般都是采集,很多圖片沒有alt標(biāo)簽,對(duì)搜索引擎來說并不友好,一張一張寫相當(dāng)麻煩,可以修改為文檔關(guān)鍵字或文章標(biāo)題作為圖片alt描述。圖片的匹配度當(dāng)然沒有手動(dòng)的好,但做站群的時(shí)候能省事就好。
修改文件include/arc.archives.class.php
找到
//設(shè)置全局環(huán)境變量
$this->Fields['typename'] = $this->TypeLink->TypeInfos['typename'];
SetSysEnv($this->Fields['typeid'],$this->Fields['typename'],$this->Fields['aid'],$this->Fields['title'],'archives');
在下面增加代碼
查看源碼打印代碼幫助
//替換圖片Alt為文檔關(guān)鍵字+標(biāo)題
$this->Fields['body'] = str_ireplace(array('alt=""','alt='''),'',$this->Fields['body']);
$this->Fields['body'] = preg_replace("@ [s]{0,}alt[s]{0,}=["'s]{0,}[sS]{0,}["'s] @isU"," ",$this->Fields['body']);
$this->Fields['body'] = str_ireplace("<img " ,"<img alt='".$this->Fields['keywords']." . ".$this->Fields['title']."' ",$this->Fields['body']);
//end
重新生成文章即可,如果是其它字段,可以修改$this->Fields['body'] 為其它的字段名。
標(biāo)簽: