Forum Replies Created

Viewing 1 post (of 1 total)
  • Author
  • in reply to: Schema.org Question #189272
     Scorpyons
    Participant

    Hi,

    as per schema.org documentation (http://schema.org/breadcrumb, http://schema.org/BreadcrumbList), the correct breadcrumb structure should be:

    COPY CODE
    <ol itemscope itemtype="http://schema.org/BreadcrumbList">
      <li itemprop="itemListElement" itemscope
          itemtype="http://schema.org/ListItem">
        <a itemprop="item" href="https://example.com/dresses">
        <span itemprop="name">Dresses</span></a>
        <meta itemprop="position" content="1" />
      </li>
      <li itemprop="itemListElement" itemscope
          itemtype="http://schema.org/ListItem">
        <a itemprop="item" href="https://example.com/dresses/real">
        <span itemprop="name">Real Dresses</span></a>
        <meta itemprop="position" content="2" />
      </li>
    </ol>
    

    For site menu navigation (http://schema.org/SiteNavigationElement), the structure should be:

    COPY CODE
    <ul itemscope itemtype="http://www.schema.org/SiteNavigationElement">
      <li itemprop="name"><a itemprop="url" href="http://www.travelstore.com/our-advantage">Our Advantage</a></li>
      <li itemprop="name"><a itemprop="url" href="http://www.travelstore.com/our-travel-experts">Travel Experts</a></li>
      <li itemprop="name"><a itemprop="url" href="http://www.travelstore.com/destinations">Destinations</a></li>
      <li itemprop="name"><a itemprop="url" href="http://www.travelstore.com/cruises">Cruises</a></li>
      <li itemprop="name"><a itemprop="url" href="http://www.travelstore.com/interests">Interests</a></li>
      <li itemprop="name"><a itemprop="url" href="http://www.travelstore.com/explore-your-world/interests/hotels-and-resorts">Hotels</a></li>
      <li itemprop="name"><a itemprop="url" href="http://www.travelstore.com/travel-guides">Travel Resources</a></li>
    </ul>
    
Viewing 1 post (of 1 total)

Log in with your credentials

Forgot your details?