We'll create fresh WordPress site with SEO BreadCrumb installed. You have 20 minutes to test the plugin after that site we'll be deleted.
This plugin adds the function to display breadcrumbs (topic path) navigation that supports HTML5 micorodata. You can use display styles, lots of parameters of styles and original plugin hooks of breadcrumbs navigation, and you can customize navigations flexibly.
Forked “Prime Strategy Bread Crumb“
Default
Template Tag
<?php if (function_exists('bread_crumb')) bread_crumb(); ?>
Output Sample
<div id="breadcrumb" class="bread_crumb">
<div itemscope itemtype="http://data-vocabulary.org/Breadcrumb">
<a href="http://www.example.com/" itemprop="url">
<span itemprop="title">Home</span>
</a> >
</div>
<div itemscope itemtype="http://data-vocabulary.org/Breadcrumb">
<a href="http://www.example.com/?cat=2" itemprop="url">
<span itemprop="title">Seminar</span>
</a> >
</div>
<div itemscope itemtype="http://data-vocabulary.org/Breadcrumb">
<a href="http://www.example.com/?cat=4" itemprop="url">
<span itemprop="title">Tokyo</span>
</a> >
</div>
</div>
List types
Template Tag
<?php if (function_exists('bread_crumb')) bread_crumb('type=list'); ?>
Output sample
<div id="breadcrumb" class="bread_crumb">
<ul>
<li itemscope itemtype="http://data-vocabulary.org/Breadcrumb" class="level-1 top">
<a href="http://www.example.com/" itemprop="url">
<span itemprop="title">トップページ</span>
</a> >
</li>
<li itemscope itemtype="http://data-vocabulary.org/Breadcrumb" class="level-2 sub">
<a href="http://www.example.com/?cat=2" itemprop="url">
<span itemprop="title">Seminar</span>
</a> >
</li>
<li itemscope itemtype="http://data-vocabulary.org/Breadcrumb" class="level-3 sub">
<a href="http://www.example.com/?cat=4" itemprop="url">
<span itemprop="title">Tokyo</span>
</a> >
</li>
</ul>
</div>
https://github.com/nobuhiko/seo-breadcrumb