Recently a client project required a breadcrumb navigation for all interior pages. After a bit of research and discovery of the useful WP function get_post_ancestors I created the following: Add to functions.php function my_breadcrumb() { if (!is_home()) { global $post; echo ‘<a href="’; echo bloginfo(’url’); echo ‘">Home</a> < ‘; if(is_page() && [...]
