'; // tag before the current crumb
$after = ''; // tag after the current crumb
$homeLink = home_url();
if (is_home() || is_front_page())
{
if ($showOnHome == 1) echo '
' . $home . ' ' . $delimiter . ' ';
if ( is_category() ) {
$thisCat = get_category(get_query_var('cat'), false);
if ($thisCat->parent != 0) echo get_category_parents($thisCat->parent, TRUE, ' ' . $delimiter . ' ');
echo $before . '"' . single_cat_title('', false) . '"' . $after;
} elseif ( is_search() ) {
echo $before . 'Search results for "' . get_search_query() . '"' . $after;
} elseif ( is_day() ) {
echo '
' . get_the_time('Y') . ' ' . $delimiter . ' ';
echo '
' . get_the_time('F') . ' ' . $delimiter . ' ';
echo $before . get_the_time('d') . $after;
} elseif ( is_month() ) {
echo '
' . get_the_time('Y') . ' ' . $delimiter . ' ';
echo $before . get_the_time('F') . $after;
} elseif ( is_year() ) {
echo $before . get_the_time('Y') . $after;
} elseif ( is_single() && !is_attachment() ) {
if ( get_post_type() != 'post' ) {
$post_type = get_post_type_object(get_post_type());
$slug = $post_type->rewrite;
echo '
' . get_theme_mod('eightmedi_pro_breadcrumb_'.get_post_type(),$post_type->labels->singular_name) . '';
if ($showCurrent == 1) echo ' ' . $delimiter . ' ' . $before . get_the_title() . $after;
} else {
$cat = get_the_category(); $cat = $cat[0];
$cats = get_category_parents($cat, TRUE, ' ' . $delimiter . ' ');
if ($showCurrent == 0) $cats = preg_replace("#^(.+)\s$delimiter\s$#", "$1", $cats);
echo $cats;
if ($showCurrent == 1) echo $before . get_the_title() . $after;
}
} elseif ( !is_single() && !is_page() && get_post_type() != 'post' && !is_404() ) {
$post_type = get_post_type_object(get_post_type());
echo $before . get_theme_mod('eightmedi_pro_breadcrumb_'.get_post_type(),$post_type->labels->singular_name) . $after;
} elseif ( is_attachment() ) {
$parent = get_post($post->post_parent);
$cat = get_the_category($parent->ID);
if($cat!=null){
$cat = $cat[0];
echo get_category_parents($cat, TRUE, ' ' . $delimiter . ' ');
echo '
' . $parent->post_title . '';
}
if ($showCurrent == 1) echo ' ' . $delimiter . ' ' . $before . get_the_title() . $after;
} elseif ( is_page() && !$post->post_parent ) {
if ($showCurrent == 1) echo $before . get_the_title() . $after;
} elseif ( is_page() && $post->post_parent ) {
$parent_id = $post->post_parent;
$breadcrumbs = array();
while ($parent_id) {
$page = get_page($parent_id);
$breadcrumbs[] = '
' . get_the_title($page->ID) . '';
$parent_id = $page->post_parent;
}
$breadcrumbs = array_reverse($breadcrumbs);
for ($i = 0; $i < count($breadcrumbs); $i++) {
echo $breadcrumbs[$i];
if ($i != count($breadcrumbs)-1) echo ' ' . $delimiter . ' ';
}
if ($showCurrent == 1) echo ' ' . $delimiter . ' ' . $before . get_the_title() . $after;
} elseif ( is_tag() ) {
echo $before . 'Posts tagged "' . single_tag_title('', false) . '"' . $after;
} elseif ( is_author() ) {
global $author;
$userdata = get_userdata($author);
echo $before . 'Articles posted by ' . $userdata->display_name . $after;
} elseif ( is_404() ) {
echo $before . 'Error 404' . $after;
}
if ( get_query_var('paged') ) {
if ( is_category() || is_day() || is_month() || is_year() || is_search() || is_tag() || is_author() ) {
echo ' ('.__('Page' , 'bingle') . ' ' . get_query_var('paged').')';
}
}
echo '
';
}
}
}
if(!function_exists('bingle_is_archive_thumbnail_enabled')){
function bingle_is_archive_thumbnail_enabled(){
$bingle_thumb_enabled = false;
$bingle_archive_order = get_theme_mod('bingle_inner_blog_elements');
if($bingle_archive_order==''){
$bingle_archive_order = '[{"id":"bingle_thumbnail","name":"Thumbnail","enable":"1"},{"id":"bingle_titlemeta","name":"Title & Meta","enable":"1"},{"id":"bingle_excerpt","name":"Excerpt","enable":"1"}]';
}
$bingle_archive_order_arr = json_decode($bingle_archive_order,true);
if($bingle_archive_order_arr!=null){
foreach ($bingle_archive_order_arr as $bingle_post_elements) {
if(isset($bingle_post_elements['id']) && $bingle_post_elements['id']=='bingle_thumbnail'){
if(isset($bingle_post_elements['enable']) && $bingle_post_elements['enable']=='1'){
$bingle_thumb_enabled = true;
}
}
}
}
return $bingle_thumb_enabled;
}
}
if(!function_exists('bingle_header_scripts')){
function bingle_header_scripts(){
$header_bg_v = get_header_image();
echo "\n";
}
}
add_action('wp_head','bingle_header_scripts');
if ( class_exists( 'woocommerce' ) ){
add_theme_support( 'wc-product-gallery-zoom' );
add_theme_support( 'wc-product-gallery-lightbox' );
add_theme_support( 'wc-product-gallery-slider' );
//remove_action( 'woocommerce_before_main_content', 'woocommerce_output_content_wrapper', 10);
//remove_action( 'woocommerce_after_main_content', 'woocommerce_output_content_wrapper_end', 10);
if(!function_exists('bingle_wrapper_start')){
function bingle_wrapper_start() {
echo '';
}
}
//add_action('woocommerce_before_main_content', 'bingle_wrapper_start', 10);
if(!function_exists('bingle_wrapper_end')){
function bingle_wrapper_end() {
echo '
';
$bingle_sidebar=get_theme_mod('bingle_woocommerce_sidebar_layout','right-sidebar');
if($bingle_sidebar=='left-sidebar'){
get_sidebar('left');
}elseif($bingle_sidebar=='right-sidebar'){
get_sidebar('right');
}else{
remove_action('woocommerce_sidebar','woocommerce_get_sidebar');
}
echo '
';
}
}
//add_action('woocommerce_after_main_content','bingle_wrapper_end',9);
}
/* actions for header */
add_action('bingle_inner_page_titles','bingle_inner_page_titles_cb',10);
if(!function_exists('bingle_inner_page_titles_cb')){
function bingle_inner_page_titles_cb() {
if(is_page() && !is_front_page() && !is_home()){
$bingle_single_page_style = get_the_post_thumbnail_url();
if(!empty($bingle_single_page_style)){
$bingle_single_page_style = ' style="background-image: url('.$bingle_single_page_style.'); background-size: cover;"';
}
echo '';
}
}
}
add_action('bingle_main_header','bingle_main_header_cb',10);
if(!function_exists('bingle_main_header_cb')){
function bingle_main_header_cb() {
?>