Google 是否不支持 schema.org 类型视频游戏评论的丰富网页摘要?
Does Google not support rich snippets for reviews of the schema.org type VideoGame?
当您搜索 "site:videochums.com/review" 时,某些评论不再包含丰富网页摘要。我最近将评论更改为包括 "VideoGame" 类型,而不是以前的评论; "SoftwareApplication"。丰富网页摘要未显示是因为 Google 不支持 VideoGame 吗?我尝试了结构化数据测试工具,一切都得到了完美的验证,所以我很困惑。
如果您想检查标记,这里有一个评论页面示例:[URL 已删除]
任何帮助将不胜感激。提前致谢。
Google 不会显示所有 Schema.org 类型的评论丰富网页摘要,但它们不会明确列出哪些类型是 supported(强调我的):
We support reviews and ratings for a wide range of schema.org types, including businesses, products, and different creative works such as books or movies.
可能与VideoGame
是比较新的类型有关,added2014-12-11.
至少在 2022 年 google 说:
Google also supports reviews for the following schema.org types (and their subtypes):
...
Game
...
作为 VideoGame is a (direct) subtype of Game 所以它应该可以工作。
否则,如果它不起作用(特别是在类型不是列出的类型之一并且也不是直接子类型的其他情况下,以下可能会起作用。这是来自 Google updates product structured data for car review snippets 的汽车的示例
上面写着:
Car schema is not supported automatically as a subtype of product schema.
并建议使用:
"@type": ["Product", "Car"],
VideoGame 的相同内容可能如下所示:
"@type": ["Game", "VideoGame"],
当您搜索 "site:videochums.com/review" 时,某些评论不再包含丰富网页摘要。我最近将评论更改为包括 "VideoGame" 类型,而不是以前的评论; "SoftwareApplication"。丰富网页摘要未显示是因为 Google 不支持 VideoGame 吗?我尝试了结构化数据测试工具,一切都得到了完美的验证,所以我很困惑。
如果您想检查标记,这里有一个评论页面示例:[URL 已删除]
任何帮助将不胜感激。提前致谢。
Google 不会显示所有 Schema.org 类型的评论丰富网页摘要,但它们不会明确列出哪些类型是 supported(强调我的):
We support reviews and ratings for a wide range of schema.org types, including businesses, products, and different creative works such as books or movies.
可能与VideoGame
是比较新的类型有关,added2014-12-11.
至少在 2022 年 google 说:
Google also supports reviews for the following schema.org types (and their subtypes): ... Game ...
作为 VideoGame is a (direct) subtype of Game 所以它应该可以工作。
否则,如果它不起作用(特别是在类型不是列出的类型之一并且也不是直接子类型的其他情况下,以下可能会起作用。这是来自 Google updates product structured data for car review snippets 的汽车的示例
上面写着:
Car schema is not supported automatically as a subtype of product schema.
并建议使用:
"@type": ["Product", "Car"],
VideoGame 的相同内容可能如下所示:
"@type": ["Game", "VideoGame"],