gpt4 book ai didi

html - 谷歌的主页和当前页面的 RDFa 面包屑?

转载 作者:行者123 更新时间:2023-11-27 23:07:53 28 4
gpt4 key购买 nike

由于我无法在任何地方找到合适的 RDFa 示例,我想我应该在这里问一个问题。在 Google's page有使用微数据或 RDFa 标记的面包屑示例。当您单击“示例 2”旁边的“RDFa”下的“查看标记”时,您将看到这种特定类型面包屑的标记示例(据我所知,面包屑中的图像是可选的,所以我摆脱了他们):

<ol vocab="http://schema.org/" typeof="BreadcrumbList">
<li property="itemListElement" typeof="ListItem">
<a property="item" typeof="WebPage" href="https://example.com/books">
<span property="name">Books</span>
</a>
<meta property="position" content="1">
</li>

<li property="itemListElement" typeof="ListItem">
<a property="item" typeof="WebPage" href="https://example.com/books/sciencefiction">
<span property="name">Science Fiction</span>
</a>
<meta property="position" content="2">
</li>

<li property="itemListElement" typeof="ListItem">
<a property="item" typeof="WebPage" href="https://example.com/books/sciencefiction/awardwinnders">
<span property="name">Award Winners</span>
</a>
<meta property="position" content="3">
</li>
</ol>

不幸的是,它没有说明任何有关主页和当前页面面包屑的信息,因此我不确定如何构建它。

更准确地说,我的问题是什么 propertytypeof 属性用于主页和当前页面?我是否应该只将上面示例中的第一个链接用于主页而不更改标记中的任何内容,而对于当前页面仅省略链接,因为它不是真正需要的所以它看起来像这样?:

<li property="itemListElement" typeof="ListItem">
<a property="item" typeof="WebPage" href="https://example.com">
<span property="name">Home Page</span>
</a>
<meta property="position" content="1">
</li>

// Above is for Home, below is for Current. I omitted items 2 and 3 which are positioned somwhere in between..

<li property="itemListElement" typeof="ListItem">
<span property="name">Current Page</span>
<meta property="position" content="4">
</li>

最佳答案

没有理由对主页的条目进行不同的处理,所以是的,就像其他项目一样提供它。

如果您想为当前页面提供条目而不显示链接,您仍然可能需要指定 WebPage 类型。这还允许您提供当前页面的 URL,而无需向该页面添加用户可见的链接。

<li property="itemListElement" typeof="ListItem">
<span property="item" typeof="WebPage" resource="/current-page.html">
<span property="name">Current Page</span>
</span>
<meta property="position" content="4">
</li>

它使用 span 元素代替 a 元素。
resource 属性(来自 RDFa)指定项目的 URI(无需创建超链接)。

关于html - 谷歌的主页和当前页面的 RDFa 面包屑?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/48014010/

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