如果我想在使用 JSON 的页面上启用文章丰富片段,Google 会说这样做:
<script type="application/ld+json">
{
"@context": "http://schema.org",
"@type": "NewsArticle",
"headline": "Article headline",
"alternativeHeadline": "The headline of the Article",
"image": ["thumbnail1.jpg", "thumbnail2.jpg"],
"datePublished": "2015-02-05T08:00:00+08:00",
"description": "A most wonderful article",
"articleBody": "The full body of the article"
}
</script>
下面articleBody
说放置The full body of the article
。从字面上看,这是否意味着整篇文章从头到尾?