Skip to content

Instantly share code, notes, and snippets.

@rickrduncan
Last active November 7, 2015 14:31
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 rickrduncan/0ea30b063de543a12c29 to your computer and use it in GitHub Desktop.
Save rickrduncan/0ea30b063de543a12c29 to your computer and use it in GitHub Desktop.
<?php
//* Do NOT include the opening php tag
//* Remove 'You are here' from the front of breadcrumb trail
function b3m_prefix_breadcrumb( $args ) {
$args['labels']['prefix'] = '';
return $args;
}
add_filter( 'genesis_breadcrumb_args', 'b3m_prefix_breadcrumb' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment