Skip to content

Instantly share code, notes, and snippets.

@wpspeak
Last active August 4, 2019 06:58
Show Gist options
  • Star 4 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save wpspeak/dfa7ed895b01aaf8d7bd to your computer and use it in GitHub Desktop.
Save wpspeak/dfa7ed895b01aaf8d7bd to your computer and use it in GitHub Desktop.
Remove 'You are here' texts in Genesis Framework breadcrumb
<?php
//* Remove 'You are here' texts in Genesis Framework breadcrumb
add_filter( 'genesis_breadcrumb_args', 'afn_breadcrumb_args' );
function afn_breadcrumb_args( $args ) {
$args['labels']['prefix'] = '';
return $args;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment