Jump to content

Breadcrumbs and RDFa for Google


nashtu3000

Recommended Posts

Anyone managed to implement RDFa rich semantics for breadcrumbs in prestashop? Any examples? I don't know how to decode the <span class="navigation_page">{$path}</span>

$path variable in order to split it a-la-google's example:

<div itemscope itemtype="http://data-vocabulary.org/Breadcrumb">
 <a href="http://www.example.com/books" itemprop="url">
   <span itemprop="title">Books</span>
 </a> ›
 <div itemprop="child" itemscope itemtype="http://data-vocabulary.org/Breadcrumb">
   <a href="http://www.example.com/fiction" itemprop="url">
  <span itemprop="title">Fiction</span>
   </a> ›
   <div itemprop="child" itemscope itemtype="http://data-vocabulary.org/Breadcrumb">
  <a href="http://www.example.com/books/fiction/horror" itemprop="url">
    <span itemprop="title">Horror</span>
  </a>
   </div>
 </div>
</div>

  • Like 1
Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...