Esempio n. 1
0
        <div id="breadcrumb"><?php 
if (class_exists('bcn_breadcrumb_trail')) {
    //Make new breadcrumb object
    $breadcrumb_trail = new bcn_breadcrumb_trail();
    //Setup our options
    //Set the home_title to Blog
    $breadcrumb_trail->opt['home_title'] = "Home";
    $breadcrumb_trail->opt['separator'] = "&nbsp;&nbsp;&raquo;&nbsp;&nbsp;";
    //Set the current item to be surrounded by a span element, start with the prefix
    $breadcrumb_trail->opt['current_item_prefix'] = '';
    //Set the suffix to close the span tag
    $breadcrumb_trail->opt['current_item_suffix'] = '';
    //Fill the breadcrumb trail
    $breadcrumb_trail->fill();
    //Display the trail
    $breadcrumb_trail->display();
}
?>
</div>
		        <!-- breadcrumb -->
		        <div id="breadcrumbdivider">&nbsp;</div>
 <?php 
if (have_posts()) {
    while (have_posts()) {
        the_post();
        ?>
						<?php 
        if (is_page()) {
            ?>
<h3><?php 
            the_title();