gpt4 book ai didi

xhtml - 如何实现面包屑的schema.org标记?

转载 作者:行者123 更新时间:2023-12-01 04:57:23 24 4
gpt4 key购买 nike

关于使用schema.org标记实现面包屑的信息并不多。到目前为止,我可以获得两个正式文档-one showing:

<div itemscope itemtype="http://schema.org/Property" itemid="http://schema.org/breadcrumb">
<link itemprop="domain" href="http://schema.org/WebPage"/>
<link itemprop="range" href="http://schema.org/Text"/>
</div>

And another显示如下:
<body itemscope itemtype="http://schema.org/WebPage">
<div itemprop="breadcrumb">
<a href="category/books.html">Books</a> >
<a href="category/books-literature.html">Literature & Fiction</a> >
<a href="category/books-classics">Classics</a>
</div>
</body>

这两个标记是完全不同的。它们对您有意义吗?如果是这样,我该如何在下面的普通面包屑代码中加上该标记-正确的方法?
<body>
<span id="breadcrumbs">
<a rel="home" href="http://example.com">
<span>Noob Archive</span>
</a> »
<span>
<a href="http://example.com/topic/html/">
<span>HTML</span>
</a> »
<strong>Best Practices: Markup for Setting up Breadcrumbs on Web Pages</strong>
</span>
</span>
</body>

谢谢!

最佳答案

schema.org最终在schema.org v1.92 update中发布了一个新的面包屑标记系统(发布于2014-12-11)。新的面包屑系统是 ItemList 的扩展,称为 BreadcrumbList 。每个BreadcrumbList包含多个 ListItem 元素。这允许每页多个痕迹,将每个单独的链接分隔为单独的ListItem,并提供围绕整个痕迹的包装。这几乎可以满足每个用例。

这是来自schema.org的微数据示例:

<ol itemscope itemtype="http://schema.org/BreadcrumbList">
<li itemprop="itemListElement" itemscope
itemtype="http://schema.org/ListItem">
<a itemprop="item" href="https://example.com/dresses">
<span itemprop="name">Dresses</span></a>
<meta itemprop="position" content="1" />
</li>
› <li itemprop="itemListElement" itemscope
itemtype="http://schema.org/ListItem">
<a itemprop="item" href="https://example.com/dresses/real">
<span itemprop="name">Real Dresses</span></a>
<meta itemprop="position" content="2" />
</li>
</ol>

Google最近重新设计的 Structured Data Testing Tool可以正确解析此标记。但是,该工具的重新设计删除了搜索预览,因此很难说Google如何在Google搜索结果中显示带有此标记的面包屑(或者Google是否会完全使用此数据)。 linter.structured-data.org也可以正确解析此新标记,但如此处所述,“此预览仅作为搜索引擎 可能会显示的示例而显示。每个搜索引擎提供商都可以自行决定是否要对您的页面是否在其搜索结果页中显示为增强型搜索结果。”

Google Webmaster Tools最近增加了跟踪结构化数据索引的能力。它不会显示搜索结果中正在使用的结构化数据,但会显示正在哪些页面上建立索引的数据,还显示结构化数据中的任何错误。

关于xhtml - 如何实现面包屑的schema.org标记?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10120096/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com