Seo 谷歌星级搜索(schema.org)

Seo 谷歌星级搜索(schema.org),seo,rating,google-search,schema.org,serp,Seo,Rating,Google Search,Schema.org,Serp,我正试图让评级星显示在谷歌SERP上,并根据Schema.org实现了适用的标记 有了谷歌的测试工具,一切似乎都很顺利,但星星不会出现在测试工具的预览中(也不会出现在实际的SERP中) 测试工具不显示错误,并检查以下各项: 产品-名称、制造商、图像 回顾-创建日期、修改日期、出版原则 评审-评审、最佳评分、名称、评分值 作者姓名,网址 我是否缺少任何标签,或者还有什么可以阻止星星在预览工具中显示(我确实意识到,不能保证它们以后会显示在SERP中) 谷歌的评级工具: 我试图用星星排名的实际页

我正试图让评级星显示在谷歌SERP上,并根据Schema.org实现了适用的标记

有了谷歌的测试工具,一切似乎都很顺利,但星星不会出现在测试工具的预览中(也不会出现在实际的SERP中)

测试工具不显示错误,并检查以下各项:

  • 产品-名称、制造商、图像
  • 回顾-创建日期、修改日期、出版原则
  • 评审-评审、最佳评分、名称、评分值
  • 作者姓名,网址
我是否缺少任何标签,或者还有什么可以阻止星星在预览工具中显示(我确实意识到,不能保证它们以后会显示在SERP中)

谷歌的评级工具:

我试图用星星排名的实际页面(示例):
搜索引擎结果中出现的星星实际上来自“聚合评级”模式。您已包括最佳、最差、名称和值,但未包括总评级

把它扔进去,用谷歌的结构化数据工具再次测试


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

把它扔进去,用谷歌的结构化数据工具再次测试


所以。。。在做了一点手脚之后:问题是我把它作为一个“产品”来组织,并有一个评论部分。将代码片段结构化为一个带有附属产品信息的“评论”,使其工作起来。

。。。在做了一点手脚之后:问题是我把它作为一个“产品”来组织,并有一个评论部分。将代码片段结构化为带有次级产品信息的“审阅”使其正常工作。

我最终做了如下工作:

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

....
我缺少了
itemprop=“aggregatinging”
我最终做了如下事情:

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

....

我丢失了
itemprop=“aggregating”

即使你的网站上有正确的模式标记,星星也会由谷歌自行决定。聚合是必需的,因为它将总的总数传递给谷歌,即有多少人对你的页面进行了投票或评级。这与Worsting、bestRating和ratingValue一起工作,并告诉谷歌你的产品/业务或正在被审查的“东西”的平均分数

见下文:

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


这是一个插件,它可以帮助你在谷歌搜索结果中获得星星,而无需编辑源代码。

即使你的网站上有正确的模式标记,星星也会由谷歌自行决定显示。聚合是必需的,因为它将总的总数传递给谷歌,即有多少人对你的页面进行了投票或评级。这与Worsting、bestRating和ratingValue一起工作,并告诉谷歌你的产品/业务或正在被审查的“东西”的平均分数

见下文:

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


这是一个插件,它可以帮助你在谷歌搜索结果中获得星星,而不必编辑你的源代码。

谢谢你的提示-聚合不会向谷歌暗示有多人提供输入,因此这是一个垃圾行为吗?请参阅live page-为了安全,我加入了聚合,但是预览没有变化…谢谢你的提示-聚合不会向谷歌暗示有多人提供输入,因此这是一个垃圾行为吗?请参阅live page-我包括聚合是为了安全,但是预览没有改变…我投票将这个问题作为离题题结束,因为关于SEO的问题是离题的。我投票将这个问题作为离题结束,因为关于SEO的问题是离题的。