Google搜索结果中的丰富网页摘要

时间:2012-02-08 14:26:45

标签: html seo rich-snippets

我希望将丰富的片段包含在我正在建设的网站中,以反映音乐家即将到来的巡演时间表。我已经对各种音乐家进行了一些搜索,并且发现了一些似乎遵循类似格式的音乐家。我在下面上传了两个屏幕截图,作为我的意思的一个例子。

示例1:

enter image description here

示例2:

enter image description here

令我感到困惑的是,当我将这些网站输入Google's Rich Snippet Test Tool时,没有数据显示出来。此外,当我检查其中一个tour pages的来源时,代码中没有包含丰富的代码段。这些网站如何设法以这种格式列出他们的旅行日期?

3 个答案:

答案 0 :(得分:7)

你是对的,这些乐队页面没有实现任何形式的丰富网页摘要。 Google实际上正在做的是显示从其他网站获取的有关该频段的信息。此信息来自“更多信息”行中列出的网站。这些第三方网站是在其网页中实现丰富网页摘要的网站。

我没有足够的代表评论Oded对这个问题的“回答”,但他完全错了。微格式是丰富的片段标记的可接受形式,就像微数据和RDFa一样。不过,我建议您在自己的网站上使用Schema.org微数据,因为Google将其作为丰富网页摘要标记的未来展示

答案 1 :(得分:1)

Johnathon提到,未来真的属于微数据格式,因为它是新HTML5的一部分。我强烈建议使用这种格式。 我相信这是一个非常丰富的片段,你在帖子中展示了它。您可以像这样实现事件丰富的代码段:

    <div itemscope itemtype="http://data-vocabulary.org/Event">
  ​<a href="http://www.example.com/events/spinaltap" itemprop="url" >
    <span itemprop="summary">Spinal Tap</span>
  </a>
   <img itemprop="photo" src="spinal_tap.jpg" />

  <span itemprop="description">After their highly-publicized search for a new drummer,
   Spinal Tap kicks off their latest comeback tour with a San
   Francisco show.</span>

  When:
  <time itemprop="startDate" datetime="2015-10-15T19:00-08:00">Oct 15, 7:00PM</time>—
  <time itemprop="endDate" datetime="2015-10-15T19:00-08:00">Oct 15, 9:00PM</time>

  Where:
  ​<span itemprop="location" itemscope itemtype="http://data-vocabulary.org/​Organization">
     ​<span itemprop="name">Warfield Theatre</span>
     ​<span itemprop="address" itemscope itemtype="http://data-vocabulary.org/Address">
         <span itemprop="street-address">982 Market St</span>, 
         <span itemprop="locality">San Francisco</span>, 
         <span itemprop="region">CA</span>
     </span>
     <span itemprop="geo" itemscope itemtype="http://data-vocabulary.org/​Geo">
        <meta itemprop="latitude" content="37.774929" />
        <meta itemprop="longitude" content="-122.419416" />
     </span>
  </span>

  Category: <span itemprop="eventType">Concert</span>
  <span itemprop="ticketAggregate" itemscope itemtype="http://data-vocabulary.org/Offer-aggregate"> 
    Tickets from $<span itemprop="lowPrice">10.00</span>-$<span itemprop="highPrice">11.00</span>
    <span itemprop="currency" content="USD" /> 
    <span itemprop="offerCount">2,000</span> tickets available
    <a href="http://www.example.com/events/spinaltap/alltickets" itemprop="offerurl">
      http://google.com/ticket</span>See all available tickets</a>
  </span>
  <span itemprop="tickets" itemscope itemtype="http://data-vocabulary.org/Offer"> 
    <a href="http://www.example.com/events/spinaltap/presale" itemprop="offerurl">Presale tickets</a> 
    <span itemprop="price">$10</span><span itemprop="currency" content="USD" /> 
      till <time itemprop="priceValidUntil" datetime="2015-11-10">10 November 2015</time> 
      (<span itemprop="quantity">1000</span> available)  
  </span> 
  <span itemprop="tickets" itemscope itemtype="http://data-vocabulary.org/Offer"> 
    <a href="http://www.example.com/events/spinaltap/tickets" itemprop="offerurl">Full-price tickets</a> 
    <span itemprop="price">$11</span><span itemprop="currency" content="USD" /> 
  </span>
</div>

如果您仍有问题,请查看此Google文章http://support.google.com/webmasters/bin/answer.py?hl=en&answer=164506&topic=1088474&ctx=topic。 要了解有关丰富网页摘要的更多信息,它们是什么,它们有用的内容以及存在哪种类型的丰富网页摘要,请查看http://blog.victorlava.com/what-is-a-rich-snippet-everything/上的文章。

答案 2 :(得分:0)

我同意Google不仅从所有者网站或查询网站获取并显示丰富的代码段数据,而且还使用第三方数据将结果提取到丰富的代码段友好搜索结果链接中。

最近,谷歌一直在使用知识图和更新的搜索算法推动大量数据。但是,要使用丰富的代码段格式将您网站的数据显示在Google搜索结果中,需要考虑很多因素。诸如您网站的权威,受欢迎程度,值得信赖的内容等因素通常起着至关重要的作用,以及上述示例案例所发生的情况。

由于

相关问题