Skip to content

Instantly share code, notes, and snippets.

@braddalton
Created February 3, 2014 15:59
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/8786615 to your computer and use it in GitHub Desktop.
Save braddalton/8786615 to your computer and use it in GitHub Desktop.
add_filter( 'genesis_breadcrumb_args', 'child_breadcrumb_args' );
function child_breadcrumb_args( $args ) {
if ( is_single() ) {
$args['labels']['prefix'] = '';
$args['home'] = ' Home ';
$args['sep'] = ' >> ';
$args['labels']['author'] = ' Posts ';
return $args;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment