Google 是什么意思 "The full body of the article"
What does Google mean by "The full body of the article"
如果我想在使用 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
。字面意思是从头到尾整篇文章吗?
是的,它确实意味着您的所有文章。这肯定会被搜索引擎用来索引您文章的内容并允许用户搜索它。
同时避免在其中包含任何 html 标签。
如果我想在使用 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
。字面意思是从头到尾整篇文章吗?
是的,它确实意味着您的所有文章。这肯定会被搜索引擎用来索引您文章的内容并允许用户搜索它。
同时避免在其中包含任何 html 标签。