For anyone that is still using this, these are the new replacements that fix the (vbulletin) data-vocabulary.schema deprecation from google's search console.
(just added "vbulletin" above in case anyone is searching google!)
navbar:
Code:
<div class="bread_box">
<nav>
<fieldset class="breadcrumb">
<span class="crumbs">
<vb:if condition="$vboptions['hometitle']">
<ol class="crust" itemscope="itemscope" itemtype="http://schema.org/BreadcrumbList">
<li itemprop="itemListElement" itemscope itemtype="http://schema.org/ListItem">
<a itemprop="item" href="{vb:raw vboptions.homeurl}" class="crumb" rel="up" itemprop="url" alt="{vb:rawphrase home}">
<span itemprop="title">{vb:raw vboptions.hometitle}</span>
</a>
</li>
<span class="arrow">
<span>></span>
</span>
</ol>
</vb:if>
{vb:raw navbits.breadcrumb}
{vb:raw navbits.lastelement}
</span>
</fieldset>
</nav>
</div>
navbar_link:
Code:
<vb:if condition="$show['breadcrumb']">
<ol class="crust" itemscope="itemscope" itemtype="http://schema.org/BreadcrumbList">
<li itemprop="itemListElement" itemscope itemtype="http://schema.org/ListItem">
<a itemprop="item" href="{vb:raw nav_url}" class="crumb" rel="up" itemprop="url">
<span itemprop="title">{vb:raw nav_title}</span>
</a>
</li>
<span class="arrow">
<span>></span>
</span>
</ol>
<vb:else />
<ol class="crust" itemscope="itemscope" itemtype="http://schema.org/BreadcrumbList">
<li itemprop="itemListElement" itemscope itemtype="http://schema.org/ListItem">
<b class="lastcrumb">
<span itemprop="title">{vb:raw nav_title}</span>
</b>
</li>
</ol>
</vb:if>