織夢在PHP7.0環(huán)境中為文章圖片自動添加ALT屬性為標(biāo)題方法,首先修改/include/extend.func.php,里面的把這段代碼加進(jìn)去:
|
然后在我們需要調(diào)用織夢文章內(nèi)容的地方加上調(diào)用代碼:
{dede:field.body function='replaceurl(@me)'/}
由于之前在《織夢如何去除img圖片中的style width height屬性》一文中,實(shí)現(xiàn)去高寬屬性,既然我們今天用自定義函數(shù)實(shí)現(xiàn)了替換alt屬性,那么也可以把去高寬屬性的這個功能加進(jìn)去,完整代碼如下:
//文章body優(yōu)化替換 function replaceurl($newurl) { global $dsql,$id; //獲取圖片附加表imgurls字段內(nèi)容進(jìn)行處 $row = $dsql->GetOne("SELECT title FROM dede_archives where id=$id"); //去掉img的width和height $newurl=preg_replace('/style=\"width\:(.*)\"/','',$newurl); //替換圖片Alt為文檔標(biāo)題 $newurl=str_ireplace(array('alt=""','alt=\'\''),'',$newurl); $newurl=preg_replace("@ [\s]{0,}alt[\s]{0,}=[\"'\s]{0,}[\s\S]{0,}[\"'\s] @isU"," ",$newurl); $newurl=str_ireplace("<img " ,"<img alt=\"".$row['title']."\"",$newurl); //去掉結(jié)尾空格 $newurl=str_ireplace(" /","/",$newurl); $newurl=str_ireplace(" />","/>",$newurl); return $newurl; } |
版權(quán)聲明: 本站資源均來自互聯(lián)網(wǎng)或會員發(fā)布,如果侵犯了您的權(quán)益請與我們聯(lián)系,我們將在24小時內(nèi)刪除!謝謝!
轉(zhuǎn)載請注明: 織夢在PHP7.0環(huán)境中為文章圖片自動添加ALT屬性為標(biāo)題方法