【发布时间】:2016-10-17 11:30:09
【问题描述】:
为什么 Google 需要图像(在示例中我看到的图标)作为面包屑导航?
【问题讨论】:
标签: schema.org breadcrumbs google-rich-snippets
为什么 Google 需要图像(在示例中我看到的图标)作为面包屑导航?
【问题讨论】:
标签: schema.org breadcrumbs google-rich-snippets
? 我现在真的很想知道。
如果您从文档中获取示例,请取出图像并通过标记工具测试。
<script type="application/ld+json">
{
"@context": "http://schema.org",
"@type": "BreadcrumbList",
"itemListElement": [{
"@type": "ListItem",
"position": 1,
"item": {
"@id": "https://example.com/books",
"name": "Books"
}
},{
"@type": "ListItem",
"position": 2,
"item": {
"@id": "https://example.com/books/authors",
"name": "Authors"
}
},{
"@type": "ListItem",
"position": 3,
"item": {
"@id": "https://example.com/books/authors/annleckie",
"name": "Ann Leckie"
}
},{
"@type": "ListItem",
"position": 4,
"item": {
"@id": "https://example.com/books/authors/ancillaryjustice",
"name": "Ancillary Justice"
}
}]
}
</script>
它带有错误说图像是必需的。
【讨论】:
图片不是必需的。这是文档中的错误。
John Mueller 说它将被修复。
【讨论】:
我认为在搜索结果中获得工作丰富的 sn-p 并不是真正需要的。
我不知道为什么它在文档中被标记为要求。
【讨论】: