Skip to content

Instantly share code, notes, and snippets.

@braddalton
Last active December 19, 2015 08:19
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save braddalton/5924577 to your computer and use it in GitHub Desktop.
Save braddalton/5924577 to your computer and use it in GitHub Desktop.
add_filter('genesis_breadcrumb_args', 'customize_breadcrumbs');
/**
* @author Brad Dalton - WP Sites
* @example http://wpsites.net/web-design/change-breadcrumbs-in-genesis/
*/
function customize_breadcrumbs($args) {
$args['labels']['prefix'] = 'This Is Where You Are ';
$args['home'] = 'Front Page: ';
$args['sep'] = ' >> ';
return $args;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment