2

I don't know if i set my breadcrumbs correctly, all my pages have breadcrumb like so:

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

And if its a Product page i add this to the body after the breadcrumb.

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

With Product info HERE

</div>
Happy
  • 381
  • 1
  • 3
  • 10

1 Answers1

1

You should try adding

    itemprop="breadcrumb" 

to the containing div, not the links themselves. As shown in the correct answer here.

You can also use Google's own structured data testing tool to test what data it is able to extract.

They also have a troubleshooting section which describes common pitfalls.

Finally, if all else fails you can ask them manually though they don't promise an individual response.

Community
  • 1
  • 1
chrislewisdev
  • 556
  • 1
  • 7
  • 21