Skip to content

Instantly share code, notes, and snippets.

@vfontjr
Created November 20, 2019 19:40
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 vfontjr/04573335febf6f4506115b98962c513d to your computer and use it in GitHub Desktop.
Save vfontjr/04573335febf6f4506115b98962c513d to your computer and use it in GitHub Desktop.
Remove /catagory/ from Genesis breadcrumbs URL
<?php
add_filter( 'genesis_post_crumb', 'remove_category_from_crumb_url', 10, 3);
function remove_category_from_crumb_url( $crumb, $args, $cat_crumb ) {
$crumb = str_replace("/category/","/",$crumb);
return $crumb;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment