Skip to content

Instantly share code, notes, and snippets.

@billerickson
Created May 9, 2013 17:36
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save billerickson/5549112 to your computer and use it in GitHub Desktop.
Save billerickson/5549112 to your computer and use it in GitHub Desktop.
Remove Post Title from Breadcrumb.
<?php
/**
* Remove Post Title from Breadcrumb.
*
* Takes a substring of crumb, starting at 0, with a length of up to the last occurrence of the
* (start of the) separator string.
*/
function be_remove_title_from_single_crumb( $crumb, $args ) {
return substr( $crumb, 0, strrpos( $crumb, $args['sep'] ) );
}
add_filter( 'genesis_single_crumb', 'be_remove_title_from_single_crumb', 10, 2 );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment