adding parent category to breadcrumb
-
hi
how can I add parent category to this function?
it’s for the breadcrumb
<?php function the_breadcrumb() { if (!is_home()) { echo '<a href="'; echo get_option('home'); echo '">'; bloginfo('name'); echo "</a> >> "; if (is_category() || is_single()) { the_category('title_li='); if (is_single()) { echo " >> "; the_title(); } } elseif (is_page()) { echo the_title(); } } } ?>
Viewing 2 replies - 1 through 2 (of 2 total)
Viewing 2 replies - 1 through 2 (of 2 total)
- The topic ‘adding parent category to breadcrumb’ is closed to new replies.