Exemplo n.º 1
0
</h3>
                  </div>
                  <!-- page heading title end-->
                  
                  <!-- page heading description-->  
                  <div id="page-desc" class="col_23 last">
                  <?php 
    $enable_breadcrumbs = get_option('corbiz_enable_breadcrumb');
    ?>
                  <?php 
    if ($enable_breadcrumbs == "true") {
        ?>
                    <div class="breadcrumbs">
                      <?php 
        if (function_exists('breadcrumbs_plus')) {
            breadcrumbs_plus();
        }
        ?>
                    </div>
                    <?php 
    }
    ?>
                  </div>  
                  <!-- page heading description end-->            
                  <?php 
}
?>
              
                </div>
              </div>  
              <div class="clear"></div>
Exemplo n.º 2
0
 function breadcrumbs($post_id = NULL)
 {
     if (theme_get_option('general', 'disable_breadcrumb') == false) {
         if ($post_id) {
             $disable = get_post_meta($post_id, '_disable_breadcrumb', true);
         }
         if (!isset($disable) || $disable == -1) {
             breadcrumbs_plus(array('prefix' => '<section id="breadcrumbs">', 'suffix' => '</section>', 'title' => false, 'home' => __('Home', 'striking_front'), 'sep' => '&raquo;', 'front_page' => false, 'bold' => false, 'blog' => __('Blog', 'striking_front'), 'echo' => true));
         }
     }
 }
Exemplo n.º 3
0
function mom_breadcrumb()
{
    if (mom_option('breadcrumb') != false) {
        breadcrumbs_plus();
    }
}
 function wt_breadcrumbs($post_id = NULL)
 {
     if (!wt_is_enabled(get_post_meta($post_id, '_disable_breadcrumb', true), wt_get_option('general', 'disable_breadcrumb'))) {
         breadcrumbs_plus(array('prefix' => '<div class="container"><div class="row"><div class="col-xs-12 text-right"><div class="breadcrumbs">', 'suffix' => '</div></div></div></div>', 'title' => false, 'home' => __('Home', 'wt_front'), 'sep' => false, 'front_page' => false, 'bold' => false, 'blog' => __('Blog', 'wt_front'), 'echo' => true));
     }
 }
 function widget($args, $instance)
 {
     breadcrumbs_plus();
 }
				<?php 
        if (get_option('page_for_posts')) {
            $posts_page_id = get_wpml_object_id(get_option('page_for_posts'), 'page');
            ?>
<div id="page-breadcrumb"><a href="<?php 
            echo get_permalink($posts_page_id);
            ?>
"><i class="icon icon-th"></i> <?php 
            echo get_the_title($posts_page_id);
            ?>
</a></div>
				<?php 
        }
        ?>

			<?php 
    } elseif (!is_front_page()) {
        ?>
				<div id="page-breadcrumb"><?php 
        breadcrumbs_plus(array('separator' => '<i class="icon icon-angle-right"></i>', 'home' => __('Home', 'theme_front')));
        ?>
</div>
			<?php 
    }
    ?>
		<?php 
}
?>

</div>
</div>