織夢DEDECMS文章正文調(diào)用代碼為{dede:field.body/},這樣圖片和文章都調(diào)用出來了。能不能分開調(diào)用呢?當(dāng)然可以啦!調(diào)用 代碼如下
內(nèi)容文字
<div> {dede:field.body runphp=yes} $string = @me; $result = preg_replace("/<\s{0,}img[^>]+>/i",'',$string); @me = $result; {/dede:field.body} </div>
內(nèi)容圖片
<div> {dede:field.body runphp=yes} $string = @me; preg_match_all("/<img([^>]*)\s*src=('|\")([^'\"]+)('|\")/",$string,$matches); $imgsrc_arr = array_unique($matches[3]); foreach($imgsrc_arr as $imgsrc) { $result .= "<li><img class=\"img\" src=\"$imgsrc\"></li>\n"; } @me = $result; {/dede:field.body} </div>
版權(quán)聲明: 本站資源均來自互聯(lián)網(wǎng)或會(huì)員發(fā)布,如果侵犯了您的權(quán)益請與我們聯(lián)系,我們將在24小時(shí)內(nèi)刪除!謝謝!
轉(zhuǎn)載請注明: 織夢DEDECMS文章內(nèi)容body圖文分離調(diào)用代碼