織夢文檔后臺添加圖片默認(rèn)alt=""為空,如果你想給所有的文檔內(nèi)容里的img alt="" title="" 補上標(biāo)題,我們不需要去改程序文件,直接在標(biāo)簽里runphp一下
文章內(nèi)容頁文章內(nèi)容標(biāo)簽
{dede:field.body/}
改成
{dede:field.body runphp=yes}
global $dsql,$id,$aid;
$myid = isset($id) ? $id : $aid;
$row = $dsql->GetOne("SELECT title FROM `dede_archives` WHERE id=$myid");
$title = $row['title'];
$str = @me;
$search = '/(<img.*?)alt=(["\'])?.*?(?(2)\2|\s)([^>]+>)/is';
$search1 = '/(<img.*?)title=(["\'])?.*?(?(2)\2|\s)([^>]+>)/is';
$content = preg_replace($search,'$1$3',$str);
$content = preg_replace($search1,'$1$3',$content);
@me = str_replace('<img', "<img alt='{$title}' title='{$title}'", $content);
{/dede:field.body}
改好后,生成文檔內(nèi)容頁,查看源代碼,效果如下
版權(quán)聲明: 本站資源均來自互聯(lián)網(wǎng)或會員發(fā)布,如果侵犯了您的權(quán)益請與我們聯(lián)系,我們將在24小時內(nèi)刪除!謝謝!
轉(zhuǎn)載請注明: 織夢文章內(nèi)容圖片加alt和title