谷歌的意思是什么"文章的全部内容"

时间:2015-04-14 08:15:45

标签: schema.org google-rich-snippets json-ld

如果我想使用JSON在页面上启用文章丰富的代码段,Google says to do this:

<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。这从字面意思上讲是从头到尾的整篇文章吗?

1 个答案:

答案 0 :(得分:2)

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

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