Advertisement
fahimmurshed

How to remove product categories from breadcrumb on WooCommerce product page

Feb 7th, 2023
928
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.61 KB | None | 0 0
  1. // change the breadcrumb on the product page
  2. add_filter( 'woocommerce_get_breadcrumb', 'custom_breadcrumb', 20, 2 );
  3. function custom_breadcrumb( $crumbs, $breadcrumb ) {
  4.  
  5.     // only on the single product page
  6.     if ( ! is_product() ) {
  7.         return $crumbs;
  8.     }
  9.    
  10.     // gets the first element of the array "$crumbs"
  11.     $new_crumbs[] = reset( $crumbs );
  12.     // gets the last element of the array "$crumbs"
  13.     $new_crumbs[] = end( $crumbs );
  14.  
  15.     return $new_crumbs;
  16.  
  17. }
  18. // https://stackoverflow.com/questions/66461448/how-to-remove-product-categories-from-breadcrumb-on-woocommerce-product-page
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement