我们为租借对象评级网站嵌入了丰富的代码段。这是一个例子:
在Google搜索结果中列出时效果正常。
现在我们要汇总所有评分并将其发布在首页上,以便主页本身在Google搜索结果中获得评分。我们前一段时间做过: http://www.google.de/webmasters/tools/richsnippets?q=www.sonnenquartiere.de
我们之前做过这一点,但Google搜索中的结果仍然没有显示汇总评级。这是一个例子:
https://www.google.de/search?q=Boardinghaus+Norderney(第二名)
我们可以采取哪些措施来实现这一目标吗?
答案 0 :(得分:0)
我注意到有关您的标记的一件事是您使用schema.org/WebPage标记作为总体评论评分。因此,搜索引擎将该架构视为主页的评级。您应该使用聚合评级架构以及更好地描述您的业务类型的架构,可能是schema.org/LodgingBusiness类别中的内容。
答案 1 :(得分:0)
我希望现在还为时不晚,我能够提供帮助。
遵循标准程序是这种方法的最佳实践。确保使用正确的标记。因此,对于审核,请使用review-schema作为以下示例:
使用此工具生成代码,然后根据此工作示例修改您的网站 http://www.microdatagenerator.com/reviews-schema/
例如:
<div itemscope itemtype="http://schema.org/Review">
<div itemprop="itemReviewed" itemscope temtype="http://schema.org/Thing"><span itemprop="name">home mortgage</span> </div>
<div itemprop="author" itemscope itemtype="http://schema.org/Person">
<span itemprop="name"> Nick M.</span>
</div><meta itemprop="datePublished" content = "01/01/2016">
<div itemprop="reviewRating" itemscope itemtype="http://schema.org/Rating"
<meta itemprop="worstRating" content = "1"/><span itemprop="ratingValue">5</span>/<span itemprop="bestRating">5</span> stars </div>
<span itemprop="description">My experience with ABC Company was very good and I recommend it to everyone. </span>
</div>
您获取该代码并将所需的部分带到您的网页。