Your IP : 216.73.216.0


Current Path : /home/goldnueh/public_html/wp-content/themes/coolair/inc/
Upload File :
Current File : /home/goldnueh/public_html/wp-content/themes/coolair/inc/breadcrumbs.php

<?php

	global $coolair_option;
	
	if (is_page()) {
		get_template_part( 'inc/page-header/breadcrumbs' );
	}
	
	if(is_404()) {
		get_template_part( 'inc/page-header/breadcrumbs-404' );
	}

	if(is_singular('teams')) {
		get_template_part( 'inc/page-header/breadcrumbs-team' );
	}

	if(is_singular('rt-portfolios')){
		get_template_part( 'inc/page-header/breadcrumbs-portfolio' );
	}
	
	if(is_singular('post')){
		get_template_part( 'inc/page-header/breadcrumbs-single' );
	}

	if(is_home() && !is_front_page() || is_home() && is_front_page()){
		get_template_part( 'inc/page-header/breadcrumbs-blog' );
	}

	if(is_archive()){	
		if ( class_exists( 'WooCommerce' ) ) {	
			if(is_shop() || is_product_category() || is_product_tag()){
						
			}
			else{
				get_template_part( 'inc/page-header/breadcrumbs-archive');
			}	
		}else{
			get_template_part( 'inc/page-header/breadcrumbs-archive');
		}	
	}	

	if(is_search() && !is_archive()){
		get_template_part( 'inc/page-header/breadcrumbs-search');
	}	

	if ( class_exists( 'WooCommerce' ) ) {
		if (is_shop() || is_product_category() || is_product_tag()) {
			get_template_part( 'inc/page-header/breadcrumbs-shop');
		}
		if(is_product('product')){
			get_template_part( 'inc/page-header/breadcrumbs-shop-single' );
		}	
	}
?>