Skip to content

Instantly share code, notes, and snippets.

@certainlyakey
Created October 30, 2017 10:19
Show Gist options
  • Select an option

  • Save certainlyakey/97b2d0319f648e986c799916e168bb10 to your computer and use it in GitHub Desktop.

Select an option

Save certainlyakey/97b2d0319f648e986c799916e168bb10 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