谷歌对游戏的星级评分

时间:2015-08-06 12:44:53

标签: seo google-search

你好,我有一个有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/,但我有错误

由于

2 个答案:

答案 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>

现在,你无法在那里放任何你想要的东西。要使用星级评分,您必须放置reviewCountratingCount。这些只是强制性的。

答案 1 :(得分:0)

测试人员有两个问题

  • 它不知道你评价的是什么,你需要告诉它你正在评价一个游戏,以及游戏的名称
  • 你给出了最好的评分但没有评分,有多少人给它评分?如果你不知道设置为&#39; 1&#39;并使用<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有更多示例,谷歌可能会要求为游戏提供更多属性,例如nameheadline。谷歌可以在上个月突然决定强制要求。