3

如果我想在使用 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。从字面上看,这是否意味着整篇文章从头到尾?

4

1 回答 1

2

是的,它确实意味着你所有的文章。搜索引擎肯定会使用它来索引您文章的内容并允许用户对其进行搜索。

还要避免在其中包含任何 html 标签。

于 2015-04-14T18:16:00.997 回答