我的schema.org breadcrumb设置正确吗?

时间:2012-09-22 20:24:04

标签: xhtml breadcrumbs schema.org

我不知道我是否正确设置了面包屑,我的所有页面都有这样的面包屑:

<body itemscope="itemscope" itemtype="http://schema.org/WebPage">

<div class="breadcrumb">
<a title="MY Site Title" rel="home" itemprop="breadcrumb" href="http://www.mysite.com/">MY Site Title</a>
<span class="navigation-pipe">»</span>
<a title="Category Name" itemprop="breadcrumb" href="http://www.mysite.com/CategoryName">Category Name</a>
<span class="navigation-pipe">»</span>Product Page
</div>

如果是产品页面,我会在面包屑之后将其添加到正文中。

<div itemscope itemtype="http://schema.org/Product">

With Product info HERE

</div>

1 个答案:

答案 0 :(得分:1)

您应该尝试添加

    itemprop="breadcrumb" 

到包含div,而不是链接本身。 As shown in the correct answer here

您还可以使用Google自己的structured data testing tool来测试它能够提取的数据。

他们还有一个troubleshooting section来描述常见的陷阱。

最后,如果所有其他方法都失败了you can ask them manually,尽管他们不承诺个人回复。