Wordpress Breadcrumbs
Wrapping up my WordPress kick (for now), I recently did another custom wordpress theme job where I was asked to add breadcrumbs. I didn’t know how to do this and so spent a good amount of time researching. Turns out there are a few plugins out there which will do the trick, but the one that worked best for me was Breadcrumb NavXT.
The HTML
After><div class=”breadcrumb”>
<?php if (function_exists(‘bcn_display’))
{
// Display the breadcrumb
bcn_display();
} ?>
</div>
Because this blog was a separate URL from it's parent company website I also added a little code up front to give a link back to "home":
<div class="breadcrumb">
Home >
<?php if (function_exists('bcn_display'))
{
// Display the breadcrumb
bcn_display();
} ?>
</div>
Tweak the Settings
For my purposes all I needed to do was go to Settings > Breadcrumb NavXT and give "Blog" as the title and ">" as the breadcrumb separator.

And Voila!

By the way, when I first installed the plugin I got some weird sort of error message (can't remember what it was), but it didn't actually effect anything at all. This also happened the second time I installed it, so maybe it's just a bug with this version. Basically, if you see something weird, you probably don't need to worry about it. ;~)
May 15th, 2008 at 4:36 pm
Breadcrumbs are one of those things easily taken for granted on the ‘net — I can’t count how many times I’ve been on a website and suddenly wished they had been included.
Screenshot #1 tells us that someone needs to upgrade their WP installation… ;-)
May 19th, 2008 at 5:39 am
well, welcome back! i have some reading to do!
September 29th, 2009 at 3:31 pm
hi.
thanks.
very goodddd……
November 28th, 2009 at 11:18 pm
thank you very good