Guest User

Untitled

a guest
Oct 18th, 2017
67
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.38 KB | None | 0 0
  1. /**
  2. * Remove Post Title from Breadcrumb.
  3. *
  4. * Takes a substring of crumb, starting at 0, with a length of up to the last occurrence of the
  5. * (start of the) separator string.
  6. */
  7. function be_remove_title_from_single_crumb( $crumb, $args ) {
  8. return substr( $crumb, 0, strrpos( $crumb, $args['sep'] ) );
  9. }
  10. add_filter( 'genesis_single_crumb', 'be_remove_title_from_single_crumb', 10, 2 );
Add Comment
Please, Sign In to add comment