Skip to content

Instantly share code, notes, and snippets.

@jameskoster
Last active December 24, 2015 06:59
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jameskoster/6761036 to your computer and use it in GitHub Desktop.
Save jameskoster/6761036 to your computer and use it in GitHub Desktop.
Remove breadcrumbs in WooThemes
add_action( 'init', 'jk_remove_woo_breadcrumbs' );
function jk_remove_woo_breadcrumbs() {
remove_action( 'woo_main_before', 'woo_display_breadcrumbs', 10 );
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment