','');
}
elseif (igthemes_option('breadcrumb') == '1' && !is_page()) {
echo '';
if (!is_home()) {
echo '
';
echo esc_html__('Home', 'boxed-wp');
echo '';
if (is_category() || is_single()) {
echo " / ";
the_category(' / ');
if (is_singular( 'post' )) {
echo " / ";
the_title();
}
elseif (is_singular()) {
echo the_title();
}
}
elseif (is_page()) {
echo the_title();
}
elseif (is_archive()) {
echo single_month_title();
echo single_tag_title("", false);
}
}
echo '
';
}
}
add_action( 'igthemes_before_single' , 'igthemes_breadcrumb' );
/*-----------------------------------------------
# IMAGES
-----------------------------------------------*/
//page featured image
function igthemes_page_featured_image() { ?>
";
the_post_thumbnail( 'full', array( 'class' => 'featured-img' ) );
echo "";
} ?>
";
the_post_thumbnail( 'full', array( 'class' => 'featured-img' ) );
echo "";
} ?>
";
the_post_thumbnail( 'large', array( 'class' => 'featured-img' ) );
echo "";
} ?>
";
} else {
echo "";
}//end div
}
add_action( 'igthemes_before_site_content' , 'igthemes_grid_before' );
function igthemes_grid_after() {
echo "
";
}
add_action( 'igthemes_after_site_content' , 'igthemes_grid_after' );
//sidebar grid
function igthemes_sidebar_grid_before() {
if (!is_singular() ||
is_singular() && !is_page()) {
$col="col4 pull-left";
}
if (is_page_template('page-sidebar-left.php')) {
$col="col4 pull-left";
}
if (is_page() && !is_page_template('')) {
$col="col4";
}//end normal layout
if (class_exists( 'WooCommerce')) {
if (is_woocommerce()) {
$colshop="col4 pull-left";
}
}//end ecommerce layout
if (class_exists( 'WooCommerce') && is_woocommerce()) {
echo "";
} else {
echo "
";
}//end div
}
add_action( 'igthemes_before_sidebar' , 'igthemes_sidebar_grid_before' );
function igthemes_sidebar_grid_after() {
echo "
";
}
add_action( 'igthemes_after_sidebar' , 'igthemes_sidebar_grid_after' );
/*-----------------------------------------------
# SIDEBAR
-----------------------------------------------*/
function igthemes_get_sidebar() {
?>