• Hello!

    Google is reporting that an item is required for schema markup BreadcrumbList to be properly used. The breadcrumb list for posts and pages seems to have everything except the item markup.

    Currently the code appears as:

    <div id="breadcrumb">
    	<div role="navigation" aria-label="Breadcrumbs" class="breadcrumb-trail breadcrumbs" itemprop="breadcrumb">
    		<ul class="trail-items" itemscope itemtype="http://schema.org/BreadcrumbList"><meta name="numberOfItems" content="3" /><meta name="itemListOrder" content="Ascending" />
    			<li itemprop="itemListElement" itemscope itemtype="http://schema.org/ListItem" class="trail-item trail-begin"><a href="https://www.clrmovers.com" rel="home"><span itemprop="name">Home</span></a><meta itemprop="position" content="1" /></li>
    			<li itemprop="itemListElement" itemscope itemtype="http://schema.org/ListItem" class="trail-item"><a href="https://www.clrmovers.com/category/tips-tricks/"><span itemprop="name">Tips & Tricks</span></a><meta itemprop="position" content="2" /></li>
    			<li itemprop="itemListElement" itemscope itemtype="http://schema.org/ListItem" class="trail-item trail-end"><span itemprop="name">Is there anything a professional mover won’t move?</span><meta itemprop="position" content="3" /></li>
    		</ul>
    	</div>
    </div>
    <!-- #breadcrumb -->
    

    Though corrected code should be like this:

    <div id="breadcrumb">
    	<div role="navigation" aria-label="Breadcrumbs" class="breadcrumb-trail breadcrumbs" itemprop="breadcrumb">
    		<ul class="trail-items" itemscope itemtype="http://schema.org/BreadcrumbList"><meta name="numberOfItems" content="3" /><meta name="itemListOrder" content="Ascending" />
    			<li itemprop="itemListElement" itemscope itemtype="http://schema.org/ListItem" class="trail-item trail-begin"><a href="https://www.clrmovers.com" rel="home" itemtype="http://schema.org/Thing" itemprop="item" href="/" itemid="/"><span itemprop="name">Home</span></a><meta itemprop="position" content="1" /></li>
    			<li itemprop="itemListElement" itemscope itemtype="http://schema.org/ListItem" class="trail-item"><a href="https://www.clrmovers.com/category/tips-tricks/" itemtype="http://schema.org/Thing" itemprop="item" itemid="/category/tips-tricks/"><span itemprop="name">Tips & Tricks</span></a><meta itemprop="position" content="2" /></li>
    			<li itemprop="itemListElement" itemscope itemtype="http://schema.org/ListItem" class="trail-item trail-end"><span  itemtype="http://schema.org/Thing" itemprop="item" itemid="https://www.clrmovers.com/is-there-anything-a-professional-mover-wont-move/"><span itemprop="name">Is there anything a professional mover won’t move?</span><meta itemprop="position" content="3" /></li>
    		</ul>
    	</div>
    </div>
    <!-- #breadcrumb -->

    Wondering if this could be added to the next theme update?

    The page I need help with: [log in to see the link]

  • The topic ‘Breadcrumb Microdata missing “item”’ is closed to new replies.