带有评级星的Google搜索(schema.org)

时间:2012-12-12 14:09:00

标签: seo rating google-search schema.org serp

我正在努力让评级星显示在Google SERP上,并根据Schema.org实施适用的标签。

使用Google的测试工具,一切似乎都很好,但是测试工具中的预览中没有显示星星(也没有显示在实际的SERP中)。

测试工具显示没有错误,并检查:

  • 产品 - 名称,制造商,图片
  • 评论 - datecreated,datemodified,publishingprinciples
  • 评论评分 - 精益求精,评分,名称,评级值
  • 作者 - 姓名,网址

我在这里错过了任何标签,或者还有什么可以阻止星星在预览工具中显示(我确实意识到它们不能保证以后会在SERPS中显示)?

Google评级工具: http://www.google.com/webmasters/tools/richsnippets?url=http%3A%2F%2Fde.chclt.net%2Fschokolade%2Fmichel-cluizel-vila-gracinda%2F&html=

实际页面(示例)我试图用星星排名: http://de.chclt.net/schokolade/michel-cluizel-vila-gracinda/

4 个答案:

答案 0 :(得分:4)

搜索引擎结果中出现的星星实际上来自“聚合评级”架构。您已包含最佳,最差,名称和值,但不包括总评分。

将其丢入,然后使用Google的结构化数据工具再次测试。

http://schema.org/AggregateRating

答案 1 :(得分:2)

所以...经过一些小小的讨论之后:问题在于我将其作为一个带有评论部分的“产品”。将代码段构造为具有从属产品信息的“评论”使其有效。

答案 2 :(得分:1)

我最终会这样做:

<div  itemprop="aggregateRating"
  itemscope itemtype="http://schema.org/AggregateRating">
   ....
 </div>

我错过了itemprop="aggregateRating"

答案 3 :(得分:-1)

即使您在网站上使用正确的架构标记,也要由Google自行决定是否显示星号。需要AggregateRating,因为它将总数总计传递给Google,以了解对该页面进行了投票或评分的人数。这可以与badRating,bestRating和ratingValue结合使用,并告诉Google您正在审核的产品/业务或“事物”的平均得分。

参见下文:

<div class="srw_business" itemscope itemtype="http://schema.org/LocalBusiness">
<meta itemprop="name" content="Simple Reviews Widget">
<meta itemprop="image" content="http://www.simplereviewswidget.com/wp-content/uploads/2018/11/simple-reviews-widget.png">
<div class="srw_hide srw_address" itemprop="address" itemscope itemtype="http://schema.org/PostalAddress">
<meta itemprop="streetAddress" content="22 Carlton Road">
<meta itemprop="addressLocality" content="South Croydon">
<meta itemprop="addressRegion" content="London">
<meta itemprop="postalCode" content="CR2 0BS">
<meta itemprop="addressCountry" content="United Kingdom">
<meta itemprop="telephone" content="07912452089">
<meta itemprop="email" content="contact@simplereviewswidget.com">
 </div>
<div class="srw_hide srw_geo" itemprop="geo" itemscope itemtype="http://schema.org/GeoCoordinates">
<meta itemprop="latitude" content="51.354090">
<meta itemprop="longitude" content="-0.092030">
</div>
<div class="srw_hide srw_aggregateRating" itemprop="aggregateRating" itemscope itemtype="http://schema.org/AggregateRating">
<meta itemprop="bestRating" content="5">
<meta itemprop="worstRating" content="0">
<meta itemprop="ratingValue" content="5.0">
</div>

这取自http://www.simplereviewswidget.com/,这是一个插件,可以帮助您在Google搜索结果中获得星标,而无需编辑源代码。