Hi,
Having a bit of trouble with breadcrumbs in Wordpress, the theme has the breadcrumbs feature enabled but only includes the object page and the homepage, I want to add the parent page into the breadcrumbs.
Here is the code:
<div id="breadcrumbs">
<?php if(function_exists('bcn_display')) { bcn_display(); }
else { ?>
<a href="<?php echo esc_url( home_url( '/' ) ); ?>"><?php esc_html_e('Home','Aggregate') ?></a> <span class="raquo">»</span>
<?php if( is_tag() ) { ?>
<?php esc_html_e('Posts Tagged ','Aggregate') ?><span class="raquo">"</span><?php single_tag_title(); echo('"'); ?>
<?php } elseif (is_day()) { ?>
<?php esc_html_e('Posts made in','Aggregate') ?> <?php the_time('F jS, Y'); ?>
<?php } elseif (is_month()) { ?>
<?php esc_html_e('Posts made in','Aggregate') ?> <?php the_time('F, Y'); ?>
<?php } elseif (is_year()) { ?>
<?php esc_html_e('Posts made in','Aggregate') ?> <?php the_time('Y'); ?>
<?php } elseif (is_search()) { ?>
<?php esc_html_e('Search results for','Aggregate') ?> <?php the_search_query() ?>
<?php } elseif (is_single()) { ?>
<?php $category = get_the_category();
$catlink = get_category_link( $category[0]->cat_ID );
echo ('<a href="'.esc_url($catlink).'">'.esc_html($category[0]->cat_name).'</a> '.'<span class="raquo">»</span> '.get_the_title()); ?>
<?php } elseif (is_category()) { ?>
<?php single_cat_title(); ?>
<?php } elseif (is_author()) { ?>
<?php
global $wp_query;
$curauth = $wp_query->get_queried_object();
esc_html_e('Posts by ','Aggregate'); echo ' ',$curauth->nickname;
?>
<?php } elseif (is_page()) { ?>
<?php wp_title(''); ?>
<?php }; ?>
<?php }; ?>
</div> <!-- end #breadcrumbs -->
Thanks