2

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

<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>
4

1 回答 1

1

你应该尝试添加

    itemprop="breadcrumb" 

到包含 div,而不是链接本身。 如这里正确答案所示

您还可以使用 Google 自己的结构化数据测试工具来测试它能够提取哪些数据。

他们还有一个故障排除部分,描述了常见的陷阱。

最后,如果所有其他方法都失败了,您可以手动询问他们,尽管他们不承诺单独回复。

于 2012-09-25T08:40:17.627 回答