Skip to content

Instantly share code, notes, and snippets.

@netwizards
Forked from certainlyakey/functions.php
Created July 31, 2024 08:47
Show Gist options
  • Select an option

  • Save netwizards/ccb8bbe7003a38556718cf06895995bb to your computer and use it in GitHub Desktop.

Select an option

Save netwizards/ccb8bbe7003a38556718cf06895995bb to your computer and use it in GitHub Desktop.
Remove an item from Breadcrumbs NavXT plugin trail (Wordpress)
if (function_exists('bcn_display')) {
function theme_remove_news_from_trail_on_404($trail) {
if ( is_404() ) {
unset($trail->trail[1]);
array_keys($trail->trail);
}
}
add_action('bcn_after_fill', 'theme_remove_news_from_trail_on_404');
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment