为什么 Google 不显示带有星标的 review/rating?
Why Google doesn't show review/rating with stars?
阅读 schema.org 之后,我写了一个小的 "rich snippet" 或者它的名字。 google 今天找到了我们,但未显示星级和评分。也许有人对此有经验并且知道事情是如何完成的?它仅取决于微数据还是还取决于 <head>
标签中的任何其他内容?否则我的代码片段有什么问题?
这是我的代码片段:
<div itemscope itemtype="http://schema.org/Organization">
<div class="row">
<div class="col-sm-6">
<div class="clogo-container">
<img src="logo.jpg" alt="logo" class="logo" />
</div>
<div class="infos">
<span class="website"><a href="https://localhost" target="_blank">https://localhost</a></span><br/>
is a page made by<br/>
<br/>
<span class="name" itemprop="name"><b>Mypage</b></span><br/>
</div>
</div>
<div class="col-sm-6">
<div class="rate" itemprop="aggregateRating" itemscope itemtype="http://schema.org/AggregateRating">
<div class="ratingbox">
<img src="image.jpg" alt="Logo" />
<b><span class="name">Mypage</span></b>
<div class="main-rating" id="customer-1-rate"></div>
<span class="vote">
<span itemprop="ratingValue">4.44</span>
<meta itemprop="bestRating" content="5"/>
<meta itemprop="worstRating" content="1"/>
/ 5.00</span><br/>
<span class="total">out of
<span itemprop="ratingCount">34</span>
total</span>
</div>
</div>
</div>
</div>
</div>
您对 Microdata 和 Schema.org 的使用似乎还不错,Google 的 SDTT reports no issues and says that you provide all necessary data for their Aggregate Ratings Rich Snippet。所以从技术上讲,一切似乎都是正确的。
这意味着问题(您没有看到结果的丰富网页摘要)可能与 Google 的政策有关。结果有various possible reasons why a search result feature doesn’t get displayed。请注意,他们永远不会保证显示一个,即使一切都是正确的。
典型(但不是唯一)原因:
- 你得再等一会儿。可能需要很长时间(在编制索引后)才会出现丰富网页摘要。
- 您检查了主页的搜索结果(或者您的主页上只有此标记)。 Google doesn’t show Rich Snippets for homepages.
- 您的页面内容不 "look like" 它包含汇总评分,或者您将它们隐藏起来。
阅读 schema.org 之后,我写了一个小的 "rich snippet" 或者它的名字。 google 今天找到了我们,但未显示星级和评分。也许有人对此有经验并且知道事情是如何完成的?它仅取决于微数据还是还取决于 <head>
标签中的任何其他内容?否则我的代码片段有什么问题?
这是我的代码片段:
<div itemscope itemtype="http://schema.org/Organization">
<div class="row">
<div class="col-sm-6">
<div class="clogo-container">
<img src="logo.jpg" alt="logo" class="logo" />
</div>
<div class="infos">
<span class="website"><a href="https://localhost" target="_blank">https://localhost</a></span><br/>
is a page made by<br/>
<br/>
<span class="name" itemprop="name"><b>Mypage</b></span><br/>
</div>
</div>
<div class="col-sm-6">
<div class="rate" itemprop="aggregateRating" itemscope itemtype="http://schema.org/AggregateRating">
<div class="ratingbox">
<img src="image.jpg" alt="Logo" />
<b><span class="name">Mypage</span></b>
<div class="main-rating" id="customer-1-rate"></div>
<span class="vote">
<span itemprop="ratingValue">4.44</span>
<meta itemprop="bestRating" content="5"/>
<meta itemprop="worstRating" content="1"/>
/ 5.00</span><br/>
<span class="total">out of
<span itemprop="ratingCount">34</span>
total</span>
</div>
</div>
</div>
</div>
</div>
您对 Microdata 和 Schema.org 的使用似乎还不错,Google 的 SDTT reports no issues and says that you provide all necessary data for their Aggregate Ratings Rich Snippet。所以从技术上讲,一切似乎都是正确的。
这意味着问题(您没有看到结果的丰富网页摘要)可能与 Google 的政策有关。结果有various possible reasons why a search result feature doesn’t get displayed。请注意,他们永远不会保证显示一个,即使一切都是正确的。
典型(但不是唯一)原因:
- 你得再等一会儿。可能需要很长时间(在编制索引后)才会出现丰富网页摘要。
- 您检查了主页的搜索结果(或者您的主页上只有此标记)。 Google doesn’t show Rich Snippets for homepages.
- 您的页面内容不 "look like" 它包含汇总评分,或者您将它们隐藏起来。