Enfold – Hide Breadcrumbs “You Are Here” Text
Breadcrumbs are great for giving you an indication of where you are on a site but do we really need to spell it out for users by saying “You Are Here”? This function removes the default text that appears before the breadcrumbs trail in your Enfold theme.
add_filter('avia_breadcrumbs_args', 'avia_remove_you_are_here_breadcrumb', 10, 1);
function avia_remove_you_are_here_breadcrumb($args){
$args['before'] = "";
return $args;
}

Leave a Reply
Want to join the discussion?Feel free to contribute!