Lego2012
12/13/2016 - 4:34 PM

Remove 'You are here' from Breadcrumbs

Remove 'You are here' from Breadcrumbs

<?php
//* Do NOT include the opening php tag shown above. Copy the code shown below.

//* Modify breadcrumb arguments.
add_filter( 'genesis_breadcrumb_args', 'sp_breadcrumb_args' );
function sp_breadcrumb_args( $args ) {

    $args['labels']['prefix'] = '';
    return $args;

}