Skip to content

Instantly share code, notes, and snippets.

@mitchellkrogza
Last active August 20, 2021 07:22
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 mitchellkrogza/c95bde922d87b8769539f29d03fae9a8 to your computer and use it in GitHub Desktop.
Save mitchellkrogza/c95bde922d87b8769539f29d03fae9a8 to your computer and use it in GitHub Desktop.
Woocommerce Hide Specific Product Categories from View
add_filter( 'get_terms', 'ts_get_subcategory_terms', 10, 3 );
function ts_get_subcategory_terms( $terms, $taxonomies, $args ) {
$new_terms = array();
// if it is a product category and on the shop page
if ( in_array( 'product_cat', $taxonomies ) && ! is_admin() &&is_shop() || is_product_category()) {
foreach( $terms as $key => $term ) {
if ( !in_array( $term->slug, array( 'uncategorised','artist' ) ) ) { //pass the slug name here
$new_terms[] = $term;
}}
$terms = $new_terms;
}
return $terms;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment