how to add custom breadcrumbs in wordpress?
We’ve created a custom function called get_breadcrumb() to generate the breadcrumb links. You only need to add the get_breadcrumb() function code in functions.php file of the current theme. function get_breadcrumb() { echo ‘<a href=”‘.home_url().'” rel=”nofollow”>Home</a>’; if (is_category() || is_single()) { echo “ » ”; the_category(‘ • ‘); if (is_single()) { echo ” » “; the_title(); } } … Read more