丰富网页摘要(评论)未显示在Google中

时间:2019-09-27 08:05:31

标签: google-rich-snippets structured-data

我非常熟悉“丰富摘要”。我确实在页面上创建了一个代码段:https://www.vanloonautobedrijf.nl/recensies/

我正在使用以下代码:

<script type="application/ld+json" id="shopReview">
    {
      "@context": "http://schema.org",
      "@type": "Organization",
      "name": "vanloonautobedrijf.nl",
      "url": "https://www.vanloonautobedrijf.nl",
      "aggregateRating": {
        "@type": "AggregateRating",
        "ratingValue": "4.1",
        "bestRating": "5",
        "worstRating": "1",
        "reviewCount": "430"
      }
    }

但是,即使等待了一周,这些星星仍未显示在Google中。有人知道我在做什么错吗?

感谢您的时间!

2 个答案:

答案 0 :(得分:1)

如果标记位于组织自己的网站上,则组织实体将不再获得评论星标:

https://developers.google.com/search/docs/data-types/review-snippet

“如果要审核的实体控制着有关其自身的评论,那么使用LocalBusiness或任何其他类型的组织结构化数据的页面就不具备星级评论功能。例如,有关实体A的评论放置在实体A的网站上,或者直接在其结构化数据中或通过嵌入式第三方窗口小部件。”

答案 1 :(得分:1)

我想补充 Tony McCreath 的好答案。 AggregateRating type specification 告诉我们:

  

基于多个评分或评论的平均评分。

但是,您指定的网页没有任何评论。该网页仅包含来自第三方网站的一些信息。该信息在iframe中设置:

<iframe class="resp-iframe" src="https://autobedrijf.tevreden.nl/cgi-bin/react_tool.pl?Op=Widget&template=reviews&vestigingID=autobedrijf5325kg7&height=459&width=400&limit_last_year=0&autoheight=1&num_reviews=3"  allow="encrypted-media" allowfullscreen></iframe>

这与以下 Google guidelines for the type Review 相矛盾:

  

如果审核代码段适用于本地企业或组织,则您   必须遵循以下附加准则:

     
      
  • 评级必须直接来自用户。
  •   
  • 网站必须直接从用户而不是其他网站收集评分信息
  •   
相关问题