Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- function ux_breadcrumbs() {
- if (!is_home()) {
- echo '<a href="';
- echo get_option('home');
- echo '">';
- bloginfo('name');
- echo "</a> » ";
- if (is_category() || is_single() )
- {
- if( is_category() )
- {
- single_term_title();
- }
- elseif (is_single() )
- {
- echo " » ";
- $cats = get_the_category( get_the_ID() );
- $cat = array_shift($cats);
- echo '<a href="' . esc_url( get_category_link( $cat->term_id ) ) . '" title="' . esc_attr( sprintf( __( "View all posts in %s" ), $cat->name ) ) . '">'. $cat->name .'</a>';
- echo " ";
- the_title();
- }
- } elseif (is_page()) {
- echo the_title();
- }
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement