Simple to build custom HTML for breadcrumbs just as you want them without worrying about the functionality of the breadcrumbs themselves. Or if you prefer, use our simple formatted breadcrumbs. Simple is often better. More stuff coming to Aniomalia.
get_aniomalia_breadcrumbs()
- outputs arrayaniomalia_breadcrumbs()
- outputs HTML
title
- page name (site name if no page is set for frontpage option)url
- full permalink to pagetype
- useful for customizing by typehome
parent
blog
category
tag
taxonomy
author
current
<?php $breadcrumbs = get_aniomalia_breadcrumbs(); ?>
<?php if ( ! is_front_page() ) : ?>
<nav class="breadcrumbs">
<ul>
<?php foreach ( $breadcrumbs as $item ) : ?>
<li>
<a href="<?php echo $item['url']; ?>">
<?php if ( $item['type'] == 'home' ) : ?>
<i class="icon-home"></i>
<?php else : ?>
<?php echo $item['title']; ?>
<?php endif; ?>
</a>
</li>
<?php endforeach; ?>
</ul>
</nav>
<?php endif; ?>
This plugin is released under a GPL license. Read more here