Breadcrumb Navigation 0.8.1

I am pleased to annouce the Breadcrumb Navigation 0.8.1 plugin for WordPress 1.2 and 1.2.1. Many features have been added and documentation is much clearer and concise.
To use the plugin:

  1. Drop into your plugins directory and activate.
  2. Edit your index.php file and add this where you would like the breadcrumb to show:
    <?php get_breadcrumb(); ?>
    Note: the breadcrumb can be placed anywhere but inside “the loop"; however, the best place is right after <div id="content">.
  3. View website to confirm proper operation
  4. Stir and Enjoy!

[- See it in action | Download zip or gzip -]



0.8.1 Changes and Notes:

Credits:

Note: skip this section if you do not wish to configure the breadcrumb plugin. The default settings work fine.
For advanced users (or those feeling adventurous), there are parameters available to configure the plugin. Cauton: users of previous versions will not be able to use the same options and options order as they have changed.

<?php get_breadcrumb('rootName', showRoot, showRP, showOnSingle, 'prefix', 'sep', 'divid', usedis, 'dividSingle', uselfsp); ?>

Parameters:

The breadcrumb displays perfectly fine with the normal output; however, some may wish to style it, therefore the breadcrumb is enclosed in a div tag so CSS may be applied to it. Example:

#breadcrumb {
	font-family: 'Times New Roman', Times, serif;
	background: #EEEEFF;
	border: solid 1px #000000;
	padding: 2px;
}

Place this code in the wp-layout.css file.