The ‘Breadcrumbs’ report shows the breadcrumb trail on a page indicates the page’s position in the site hierarchy, and it may help users understand and explore a site effectively. A user can navigate all the way up in the site hierarchy, one level at a time, by starting from the last breadcrumb in the breadcrumb trail.
Google utilizes breadcrumb mark the body of site/blog pages to arrange the data from the pages in indexed lists. Given the way that Google is viewing breadcrumbs all the more unquestionably in query stuff, it’s a top priority than at any other time to ensure the markup is considerable
Where Google Search Engine would beforehand show full URLs in search pieces it is presently representing breadcrumbs. Google depends on considerable markup so as to create the breadcrumbs found in list items.
Breadcrumbs errors Data-Vocabulary Schema Deprecated – How to Fix?
For fixing Breadcrumbs errors in 2021, follow some steps to properly fix on Blogger.
Follow given steps to fix Data-Vocabulary Schema Deprecated Error in Google search Console for Blogger.
- Sign in to Google Search Console (Webmaster tool)
- Click on Breadcrumbs and find Errors in URLs
- Then Sign in to your Blogger
- Click on Theme
- Click edit (before edit make a backup of it)
- Press Ctrl+F (search bar) and search in bar Search Breadcrumbs
- You will see a code with Breadcrumbs Code to start (<div class=”breadcrumbs”……………..</b:loop></div>) end.
- Select the above code (as seen in image) and replace with below.
- After doing these work Click on save button.
- Now check your Breadcrumbs error by validating by live testing in the google search console.
- The Error will be Fixed.
Copy this code and replace it from the last code.
<div class='breadcrumbs' itemscope='itemscope' itemtype='https://schema.org/BreadcrumbList'>
<span itemprop='itemListElement' itemscope='itemscope' itemtype='https://schema.org/ListItem'>
<a expr:href='data:blog.homepageUrl' itemprop='item' title='Home'>
<meta content='1' itemprop='position'/>
<span itemprop='name'><b:switch var='data:blog.locale'><b:case value='id'/>Beranda<b:default/>Home</b:switch></span></a>
</span>
<b:if cond='data:post.labels'>
<b:loop index='nomor' values='data:post.labels' var='label'> &nbsp;›&nbsp;
<span itemprop='itemListElement' itemscope='itemscope' itemtype='https://schema.org/ListItem'>
<meta expr:content='data:nomor+2' itemprop='position'/>
<a expr:href='data:label.url + "?&max-results=8"' expr:title='data:label.name' itemprop='item' rel='nofollow'>
<span itemprop='name'><data:label.name/></span>
</a>
</span>
</b:loop>
<b:else/>
&nbsp;›&nbsp; <span itemprop='name'><data:blog.pageName/></span>
</b:if>
</div>
<b:elseif cond='data:view.isPage'/>
<div class='breadcrumbs' itemscope='itemscope' itemtype='https://schema.org/BreadcrumbList'>
<span itemprop='itemListElement' itemscope='itemscope' itemtype='https://schema.org/ListItem'>
<a expr:href='data:blog.homepageUrl' itemprop='item' title='Home'>
<meta content='1' itemprop='position'/>
<span itemprop='name'><b:switch var='data:blog.locale'><b:case value='id'/>Beranda<b:default/>Home</b:switch></span></a>
</span> &nbsp;›&nbsp;
<span itemprop='itemListElement' itemscope='itemscope' itemtype='https://schema.org/ListItem'>
<meta expr:content='data:num+2' itemprop='position'/>
<a expr:href='data:blog.url' expr:title='data:post.url' itemprop='item'>
<span itemprop='name'><data:blog.pageName/></span>
</a>
</span>
</div>
- After doing all work on Click on save button.
- Now check your Breadcrumbs error by validating by live testing in the google search console.
- The Error will be Fixed.