Hi,
Previously someone gave me this code, pasted below, to add a breadcrumb to my posts that brought you back to the blog. I want to also add the same
breadcrumb to my category archives page. Like this one:http://2e6.274.myftpupload.com/category/fat-cat-news/ so that people can just go back to the blog. How would I edit or this code for this? TIA! Rena
add_action( 'x_before_view_integrity_content', 'print_breadcrumb_for_posts' );
function print_breadcrumb_for_posts(){
if(is_singular( 'post' )){
?>
<div class="custom-breadcrumb">
<a href="<?php echo get_permalink( get_option('page_for_posts') ); ?>">Return to Blog</a>
</div>
<?php
}
}


