Breadcrumb is a page navigation either it is based on your blog categories or blog tags. Breadcrumb is a location based navigation it is present on this site too. See the above to post :
This method as applicable for alltuts theme by site5 and we are using the same theme on this website. This theme is one of the best wordpress theme which comes as a free cost cost officially from site5.com. As being one of the best wordpress theme alltuts but the features provided by this theme is very less. We need to increase it’s functionality so we are going to add a simple location based page navigation to the the wordpress theme alltuts.
Before going to add blah blah code to your theme file you will require to have the following wordpress plugin to be installed in your wordpress database.
1) Install Yoast WordPress SEO plugin.
2) activate the plugin and go to SEO as follows:
and click on Internal links.
3) After that check “Enable Breadcrumbs” and put any seperator in that text field. e.g. >>
4)Then under your wordpress dashboard click on appearance—>>Editor—>> select singlepost.php file for editing.
5)then in that file this code
<?php if ( function_exists('yoast_breadcrumb') ) { yoast_breadcrumb('<p id="breadcrumbs">','</p>'); } ?>
“ <div class="category"><?php the_category(' // ') ?></div>”
so your file will look like this(I m not giving all file content but instead of that some small part of code)
<?php get_header(); ?> <!-- Begin #colLeft --> <div id="colLeft"> <?php if (have_posts()) : while (have_posts()) : the_post(); ?> <!-- Begin .postBox --> <div class="postBox"> <div class="postBoxTop"></div> <div class="postBoxMid"> <div class="postBoxMidInner first clearfix"> <div class="date"><?php the_time('M') ?><br /><span class="day"><?php the_time('j') ?></span><br /><?php the_time('Y') ?></div> <?php if ( function_exists('yoast_breadcrumb') ) { yoast_breadcrumb('<p id="breadcrumbs">','</p>'); } ?> <!-- <div class="category"><?php the_category(' // ') ?></div> --> <h1><?php the_title(); ?></h1> <div class="postMetaSingle"> <img src="<?php bloginfo('template_directory'); ?>/images/ico_author.png" alt="Author"/> An article by <?php the_author_link(); ?> <img src="<?php bloginfo('template_directory'); ?>/images/ico_comments.png" alt="Comments"/> <?php comments_popup_link('No Comments', '1 Comment ', '% Comments'); ?> </div> <?php the_content(); ?>
So adding Breadcrumb to alltuts wordpress theme will give your site more flexible navigation so that readers will engaged in reading more articles on your site