' . get_the_title() . '';
elseif ( is_single() ) :
echo '
' . get_the_title() . '
';
elseif ( is_home() ) :
echo '
' . get_the_title( get_option( 'page_for_posts' ) ) . '
';
elseif ( is_category() ) :
echo '
' . single_cat_title( '', false ) . '
';
elseif ( is_search() ) :
echo '
' . printf( esc_html__( 'Search Results for: %s', 'meteorite' ), '' . get_search_query() . '' ) . '
';
elseif ( is_404() ) :
echo '
' . esc_html( 'Oops! That page can’t be found.', 'meteorite' ) . '
';
elseif ( is_tag() ) :
echo '
' . single_tag_title() . '
';
elseif ( is_day() ) :
echo '
' . get_the_date() . '
';
elseif ( is_month() ) :
echo '
' . get_the_date( 'F Y' ) . '
';
elseif ( is_year() ) :
echo '
' . get_the_date( 'Y' ) . '
';
elseif ( is_tax() ) :
echo '
' . single_term_title('', false) . '
';
// must be after is_year/month/day; otherwise they won't execute because is_archive would be true
elseif ( is_archive() ) :
the_archive_title( '
', '
' );
the_archive_description( '
', '
' );
elseif ( is_woocommerce() && !is_archive() ) :
echo '
' . get_the_title() . '
';
remove_action( 'woocommerce_before_single_product_summary', 'woocommerce_template_single_title', 8 );
endif;
?>
$delimiter
);
woocommerce_breadcrumb( $args ); ?>
',''); ?>