<?php
if(is_single()||is_page()){
echo '<script type="application/ld+json">{
"@context": "https://ziyuan.baidu.com/contexts/cambrian.jsonld",
"@id": "'.get_the_permalink().'",
"appid": "這里請填寫熊掌號 ID",
"title": "'.get_the_title().'",
"images": ["'.fanly_post_imgs().'"],
"pubDate": "'.get_the_time('Y-m-d\TH:i:s').'"
}</script>
';}
//獲取文章中的圖 last update 2018/01/22
function fanly_post_imgs(){
global $post;
$src = '';
$content = $post->post_content;
preg_match_all('/<img .*?src=[\"|\'](.+?)[\"|\'].*?>/', $content, $strResult, PREG_PATTERN_ORDER);
$n = count($strResult[1]);
if($n >= 3){
$src = $strResult[1][0].'","'.$strResult[1][1].'","'.$strResult[1][2];
}elseif($n >= 1){
$src = $strResult[1][0];
}
return $src;
}
?>
這段代碼放在主題的header.php文件的</head>標簽之前,設置APPID即可。
需要注意的是:
圖片尺寸比例3:2,圖片大小不得低於300*200px;
圖片必須出現在文章正文中,且按順序自動提取圖片;
同一個網頁中,圖片不能重復;
圖片內容不得低俗,不能出現二維碼、電話、微信號等受益方式;
