1、申請和開通百度熊掌號,并且能正常使用熊掌號里的這些功能,這些基礎操作這里不做介紹
2、熊掌號-我的功能-粉絲關注-獲得熊掌號ID
3、織夢內容頁模板在</head>前面加入
<link rel="canonical" href="{dede:global.cfg_basehost/}{dede:field.id runphp=yes}$result=GetOneArchive(@me);@me=$result['arcurl'];{/dede:field.id}">
<script src="http://msite.baidu.com/sdk/c.js?appid=1601133444348076"></script>
<script type="application/ld+json">
{
"@context": "https://ziyuan.baidu.com/contexts/cambrian.jsonld",
"@id": "{dede:global.cfg_basehost/}{dede:field.id runphp=yes}$result=GetOneArchive(@me);@me=$result['arcurl'];{/dede:field.id}",
"appid": "此處是熊掌id",
"title": "{dede:field.title/}",
"images": [{dede:field.body function=getBodypics(@me,3)/}],
"pubDate": "{dede:field.pubdate function="MyDate('Y-m-d\TH:i:s',@me)"/}"
}
</script>
4、圖片這一塊,有文章內容圖片就輸出3張,沒有就不輸出,自動加逗號隔開,所以需要在 /include/extend.func.php 這個文件最下面加入一個函數
/**
* 文章內容提取圖片(多張)自定義輸出
*
* @access public
* @param string $string 文檔內容
* @param string $num 輸出幾張
* @return string
*/
if(!function_exists('getBodypics'))
{
function getBodypics($string, $num)
{
global $cfg_basehost;
preg_match_all("/<img([^>]*)\s*src=('|\")([^'\"]+)('|\")/",$string,$matches);
$imgsrc_arr = array_unique($matches[3]);
$count = count($imgsrc_arr);
$i = 0;
$result = '';
foreach($imgsrc_arr as $imgsrc)
{
if($i == $num) break;
$result .= ($result=='' ? '"'.$cfg_basehost.$imgsrc.'"' : ','.'"'.$cfg_basehost.$imgsrc.'"');
$i++;
}
return $result;
}
}
1、添加熊掌號ID聲明,這個上面的第3步已經加了,所以略過
2、添加關注功能代碼
<script>cambrian.render('body')</script>
粉絲關注按鈕添加完成
重新生成內容頁,刷新看效果。
版權聲明: 本站資源均來自互聯(lián)網或會員發(fā)布,如果侵犯了您的權益請與我們聯(lián)系,我們將在24小時內刪除!謝謝!
轉載請注明: 織夢內容頁做熊掌號主頁展現(xiàn)和添加粉絲關注按鈕