我希望将丰富的片段包含到我正在构建的网站中,以反映音乐家即将到来的巡演日程。我对各种音乐家进行了一些搜索,并发现了一些似乎遵循类似格式的。我在下面上传了两个屏幕截图,作为我的意思的一个例子。
示例 1:
示例 2:
令我困惑的是,当我将这些网站输入Google 的 Rich Snippet Test Tool时,没有显示任何数据。此外,当我检查其中一个游览页面的来源时,代码中没有包含丰富的片段。这些网站如何设法以这种格式列出他们的旅行日期?
我希望将丰富的片段包含到我正在构建的网站中,以反映音乐家即将到来的巡演日程。我对各种音乐家进行了一些搜索,并发现了一些似乎遵循类似格式的。我在下面上传了两个屏幕截图,作为我的意思的一个例子。
示例 1:
示例 2:
令我困惑的是,当我将这些网站输入Google 的 Rich Snippet Test Tool时,没有显示任何数据。此外,当我检查其中一个游览页面的来源时,代码中没有包含丰富的片段。这些网站如何设法以这种格式列出他们的旅行日期?
你是对的,这些乐队页面没有实现任何形式的丰富片段。谷歌实际上正在做的是显示从其他网站提取的关于该乐队的信息。此信息来自“更多信息”行中列出的站点。这些第 3 方网站是在其页面中实施丰富网页摘要的网站。
我没有足够的代表来评论 Oded 对这个问题的“答案”,但他完全错了。微格式是一种可接受的丰富片段标记形式,就像微数据和 RDFa 一样。不过,我建议在您的网站上使用 Schema.org 微数据,因为 Google 将其展示为丰富网页摘要标记的未来
As Johnathon mentioned, the future really belongs to microdata format, because it's the part of the new HTML5. I highly recommend to use this format. I believe that this is the even rich snippet, which have you showed in your post. You can implement your event rich snippet like this:
<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>
If you still having problems, then take a look at this Google article http://support.google.com/webmasters/bin/answer.py?hl=en&answer=164506&topic=1088474&ctx=topic. To know more about rich snippets, what are they, what are they useful for and what type of rich snippets exist, check my article at http://blog.victorlava.com/what-is-a-rich-snippet-everything/.
我也同意 Google 不仅从所有者网站或查询网站获取并显示丰富的片段数据,而且还使用第三方数据将结果拉入丰富片段友好的搜索结果链接。
最近,谷歌一直在使用其知识图谱和更新的搜索算法推送大量数据。但是,使用丰富网页摘要格式将您网站的数据查看到 Google 搜索结果中取决于许多因素。您网站的权威、受欢迎程度、内容可信度等因素通常起着至关重要的作用,这就是上述示例案例所发生的情况。
谢谢