Skip to content

Instantly share code, notes, and snippets.

@michaeldoye
Created June 26, 2015 21:18
Show Gist options
  • Save michaeldoye/590c69c7b798398c0c27 to your computer and use it in GitHub Desktop.
Save michaeldoye/590c69c7b798398c0c27 to your computer and use it in GitHub Desktop.
Hide "Products" in WooCommerce breadcrumb
/*
* Hide "Products" in WooCommerce breadcrumb
*/
function woo_custom_filter_breadcrumbs_trail ( $trail ) {
foreach ( $trail as $k => $v ) {
if ( strtolower( strip_tags( $v ) ) == 'products' ) {
unset( $trail[$k] );
break;
}
}
return $trail;
}
add_filter( 'woo_breadcrumbs_trail', 'woo_custom_filter_breadcrumbs_trail', 10 );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment