WordPress Breadcrumbs

Creating breadcrumbs in WordPress themes can be a pain.  With that in mind, this handy function should be exactly what you need. function waz_breadcrumbs() { $delimiter = '&raquo;'; $name = 'Home'; //text for the 'Home' link $currentBefore = '<span>'; $currentAfter = '</span>'; if ( !is_home() [...]