ID);?>
ID);?>
';
echo _x( 'Home', 'breadcrumb', 'flatsome' );
echo "";
echo "/";
if(flatsome_option('featured_items_page') && !is_page()){
$page_parent = get_page_by_path(flatsome_option('featured_items_page'));
echo ''.get_the_title($page_parent->ID).'';
echo "/";
}
if(is_single()){
echo get_the_term_list( get_the_ID(), 'featured_item_category', '', '-', '' );
}
// Current page
if(is_tax()){
$term = get_term_by( 'slug', get_query_var( 'term' ), get_query_var( 'taxonomy' ) );
echo $term->name;
} else if(is_page()) {
echo get_the_title();
}
echo "";
}