-
展覽展會信息類網(wǎng)站織夢...
-
電子元件電路板類網(wǎng)站織...
-
食品百貨英文外貿(mào)類網(wǎng)站...
-
玩具動漫類網(wǎng)站織夢模板...
-
裝飾建材公司類網(wǎng)站織夢...
-
鋼結(jié)構(gòu)崗?fù)I銷型織夢網(wǎng)...
-
中英雙語律師事務(wù)所類網(wǎng)...
-
儀器分析儀類網(wǎng)站織夢模...
-
水利工程施工類網(wǎng)站織夢...
-
精工機械軸承生產(chǎn)廠家類...
-
人力資源管理類網(wǎng)站織夢...
-
貂絨大衣服裝設(shè)計類網(wǎng)站...
-
電腦系統(tǒng)軟件下載類網(wǎng)站...
-
財稅記賬工商注冊認(rèn)證類...
-
儀器儀表科技公司類網(wǎng)站...
-
營銷型無縫鋼管定制生產(chǎn)...
-
蔬菜鮮果配送類網(wǎng)站織夢...
-
物流快運速遞類網(wǎng)站織夢...
-
網(wǎng)站模板資源下載類網(wǎng)站...
-
手游APP軟件下載類網(wǎng)站織...
打開/include/extend.func.php文件
在最下面加入
<span style="font-size:14px;">//文章body優(yōu)化替換function replaceurl($newurl){global $dsql,$id;//獲取圖片附加表imgurls字段內(nèi)容進行處$row = $dsql->GetOne("SELECT title FROM dede_archives where id=$id");//替換圖片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;}</span>
- 前段調(diào)用代碼
{dede:field.body function='replaceurl(@me)'/}
需要圖片中的style width height屬性就把上面代碼修改成下面的代碼
<span style="font-size:14px;">//文章body優(yōu)化替換function replaceurl($newurl){global $dsql,$id;//獲取圖片附加表imgurls字段內(nèi)容進行處$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;}</span>