您好,登錄后才能下訂單哦!
織夢dedecms文章詳情頁面進行熊掌號改造代碼:
<link rel="canonical" href="http://www.sdfymb.com{dede:field name='arcurl'/}" />
<script src="http://msite.baidu.com/sdk/c.js?appid=1634404368209099"></script>
<script type="application/ld+json">
{
"@context": "https://ziyuan.baidu.com/contexts/cambrian.jsonld",
"@id": "http://www.sdfymb.com{dede:field name='arcurl'/}",
"appid": "1634404368209099",
"title": "{dede:field.title/}-方圓模板",
"images": [{dede:field.body function=getbodypics(@me,3)/}],
"pubDate": "{dede:field.pubdate function="MyDate('Y-m-d',@me)"/}T{dede:field.pubdate function="MyDate('H:i:s',@me)"/}"
}
</script>
但是在織夢原有的程序中,是不存在getbodypics函數的,我們需要修改文件:/include/extend.func.php,
在文件的最后添加:
// 獲取文章主題圖片
function getbodypics($string, $num)
{
preg_match_all("/<img([^>]*)\s*src=('|\")([^'\"]+)('|\")/",$string,$matches);
$imgsrc_arr = array_unique($matches[3]);
$count = count($imgsrc_arr);
$i = 0;
if($count>2){
foreach($imgsrc_arr as $imgsrc)
{
if($i == $num) break;
if($i == 2){$result .= "\"http://www.sdfymb.com$imgsrc\"";break;}
$result .= "\"http://www.sdfymb.com$imgsrc\",";
$i++;
}
}else{
foreach($imgsrc_arr as $imgsrc)
{
if($i == 1) break;
$result .= "\"http://www.sdfymb.com$imgsrc\"";
$i++;
}
}
return $result;
}
到此就能完整的實現DEDECMS資訊詳情頁面的熊掌號改造!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。