Wishing to remove the second deliminator in this breadcrumb, so it’s only Home > Post Title.
Using
// Shortcode to add breadcrumbs to Header Builder
function my_breadcrumbs( ) {
$breadcrumbs_on = x_get_option( ‘x_breadcrumb_display’ );
if ( $breadcrumbs_on == ‘1’ ) :
$breadcrumbs = x_breadcrumbs();
endif;
return $breadcrumbs;
}
add_shortcode( ‘breadcrumbs’, ‘my_breadcrumbs’);
http://dev-deals-npb.pantheonsite.io/
Thanks- Todd