Skip to content

Instantly share code, notes, and snippets.

@boospot
Last active January 21, 2020 11:09
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save boospot/18c1ca0566ccfaaef9a6e692ff145d09 to your computer and use it in GitHub Desktop.
Save boospot/18c1ca0566ccfaaef9a6e692ff145d09 to your computer and use it in GitHub Desktop.
add_filter( 'woocommerce_get_breadcrumb', function ( $crumbs ) {
if ( function_exists( 'is_product' ) && is_product() ) {
$my_crumbs = array();
$my_crumbs[] = $crumbs[0];
$my_crumbs[] = end( $crumbs );
return $my_crumbs;
}
return $crumbs;
}, 10 );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment