你好,我有一个有Flash游戏的网站,我需要为Google搜索中的每个游戏添加星级评分,例如亚马逊'here',但是没有评论只评估它可能吗?谷歌不要因为它不是一篇文章而惩罚我吗?
<div itemprop="aggregateRating" itemscope itemtype="http://schema.org/AggregateRating">
Rated: <span itemprop="ratingValue">4</span>/<span itemprop="bestRating">5</span>
</div>
我在这里测试了代码https://developers.google.com/structured-data/testing-tool/,但我有错误
由于
答案 0 :(得分:1)
这是有效代码的示例(与游戏无关,但您会明白这一点)。你可以在工具中测试它:
<div itemscope itemtype="http://schema.org/Product">
<span itemprop="name">Kenmore White 17" Microwave</span>
<div itemprop="aggregateRating" itemscope itemtype="http://schema.org/AggregateRating">
Rated <span itemprop="ratingValue">4</span> stars -
Based on <span itemprop="reviewCount">250</span> reviews
</div>
</div>
现在,你无法在那里放任何你想要的东西。要使用星级评分,您必须放置reviewCount
或ratingCount
。这些只是强制性的。
答案 1 :(得分:0)
测试人员有两个问题
<meta>
标记隐藏此使用此:
<div itemscope itemtype="http://schema.org/VideoGame">
<a href="http://example.com/supergame1" itemprop="url">Download</a>
<img alt="Super Game logo" src="/images/screenshots/supergame/cover.jpg"/>
<div itemprop="aggregateRating" itemscope itemtype="http://schema.org/AggregateRating">
Rated: <span itemprop="ratingValue">4</span>/<span itemprop="bestRating">5</span>
Based on <span itemprop="ratingCount">1</span> rating(s).
</div>
</div>
页面http://schema.org/VideoGame有更多示例,谷歌可能会要求为游戏提供更多属性,例如name
或headline
。谷歌可以在上个月突然决定强制要求。