Skip to content

Instantly share code, notes, and snippets.

@pasadamedia
Created November 28, 2014 06:35
Show Gist options
  • Save pasadamedia/47ece19f65e8a9447248 to your computer and use it in GitHub Desktop.
Save pasadamedia/47ece19f65e8a9447248 to your computer and use it in GitHub Desktop.
Remove WooCommerce breadcrumbs.
/**
* Remove WooCommerce breadcrumbs.
*
*/
function pasada_remove_wc_breadcrumbs() {
remove_action( 'woocommerce_before_main_content', 'woocommerce_breadcrumb', 20, 0 );
}
add_action( 'get_header', 'pasada_remove_wc_breadcrumbs' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment