A guide to Breadcrumb Trail

Breadcrumb Trail is a plugin that displays a breadcrumb menu on your site. Plain and simple. How is it any better than any other breadcrumb plugin? Well, it's probably not, to be perfectly honest. This is just a script I've been building upon for several years that I usually include with my WordPress themes. I figured I'd package it as a plugin for others to use as well. How to install the plugin Uzip the breadcrumb-trail.zip folder.Upload the breadcrumb-trail folder to your /wp-content/plugins directory.In your WordPress dashboard, head over to the Plugins section.Activate Breadcrumb Trail. How to use the plugin This plugin won't work automatically because there's no way for...

WP Breadcrumb Function

Frustratingly, WordPress does not have a built in breadcrumb function! So while looking around for solutions I decided to combine what I’ve found and add my own twist, in the hopes of creating a fully comprehensive WordPress breadcrumb function of my own. This will produce a breadcrumb that looks something like this: Your Blog Name > Your Post Category > Your Post Title Here’s the function Paste this into your functions file (functions.php) within you theme directory (www.yousite.com/wp-content/themes/your_theme/functions.php) function the_breadcrumb() {     $sep = ' » ';     if (!is_front_page()) {         echo '<div class="breadcrumbs">';         echo '<a...