使用 Google 丰富网页摘要的问题

Issue on Using Google Rich Snippet

我已经通过电子邮件收到了客户对我的日托业务的一些评论,现在我只是想知道我是否可以使用 Google Rich Snippet 在 Google 搜索结果中添加和显示那些评论,而无需他们在 Google+/Google 地图评论!

我已经试过了

<div itemscope itemtype="http://data-vocabulary.org/Review">
 <span itemprop="itemreviewed">Kiddies Palace Daycare</span>
   Reviewed by <span itemprop="reviewer">Sufi</span> on
  <time itemprop="dtreviewed" datetime="2015-10-13">2015-10-13</time>.
  <span itemprop="summary">This is a great daycare</span>
  <span itemprop="description">I must say when it comes to Day Care Center in North Vancouver, Kiddies Palace Daycare is one of the best places to leave you child assured that they will take care of your baby as one of their own.</span>
  Rating: <span itemprop="rating">4.5</span>
</div>

但我有大约 10 条这样的评论,它们具有不同的 itemprop="rating" 值,那么我如何才能对所有这些评论进行综合评论呢?例如,我如何填写所需的数据(我什至不确定它们是否是必需的?!):

您可能希望使用 Schema.org 而不是 Data-Vocabulary.org(后者不再维护)。

  • 如果要提供多条评论,则需要多条Review项。

  • 如果您想提供平均评分,您需要一个 AggregateRating 项。

Google 将(或不会)使用此标记执行的操作记录在 https://developers.google.com/structured-data/rich-snippets/reviews. (It might be that you won’t get a Review Rich Snippet if you have multiple reviews on the same page, but I don’t know about that. Such questions would be on-topic on Webmasters SE。)