0

我们为租赁对象评级网站嵌入了丰富的片段。这里有一个例子:

http://www.google.de/webmasters/tools/richsnippets?q=http%3A%2F%2Fwww.sonnenquartiere.de%2Fferienwohnungen%2F4-wohnung-8-boardinghaus-norderney-2-zimmer-apartment.html

在 Google 搜索结果中列出时可以正常工作。

现在我们要汇总所有评分并将它们发布在主页上,以便主页本身在 Google 搜索结果中获得评分。我们前段时间做过: http ://www.google.de/webmasters/tools/richsnippets?q=www.sonnenquartiere.de

前段时间我们这样做了,但 Google 搜索中的结果仍未与汇总评级一起显示。这里有一个例子:

https://www.google.de/search?q=Boardinghaus+Norderney(第二名)

我们可以做些什么来让它发挥作用吗?

4

2 回答 2

0

One thing that I did notice about your markup is that you are using the schema.org/WebPage markup for your aggregate review rating. So search engines are seeing that schema as a rating for your home page. You should be using the aggregate rating schema with a schema that better describes your type of business, perhaps something in the schema.org/LodgingBusiness category.

于 2013-10-09T16:04:52.333 回答
0

我希望这还不算太晚,我将能够提供帮助。

遵循标准程序是此类事情的最佳实践。确保使用正确的标记。因此,对于审查,请使用 reviews-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>

您获取该代码并将您需要的部分带到您的网页。

这个视频很棒: https ://www.youtube.com/watch?v=N2PjWtybDOs

于 2016-03-09T23:00:01.273 回答