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 = ‘»’; $name = ‘Home’; //text for the ‘Home’ link $currentBefore = ‘<span>’; $currentAfter = ‘</span>’; if ( !is_home() && !is_front_page() || is_paged() ) { <a href=”http://www.php.net/echo”>echo</a> ‘<div id=”crumbs”>’; …
Read more »
