Skip to content

Instantly share code, notes, and snippets.

@DxDiagDx
Created April 1, 2021 16:54
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 DxDiagDx/6f3a539c76de34b933a0797aa2a1cf70 to your computer and use it in GitHub Desktop.
Save DxDiagDx/6f3a539c76de34b933a0797aa2a1cf70 to your computer and use it in GitHub Desktop.
Woo: cкрыть категорию Uncategorized со страницы магазина
// Скрыть категорию Uncategorized со страницы магазина
add_filter( 'get_terms', 'ts_get_subcategory_terms', 10, 3 );
function ts_get_subcategory_terms( $terms, $taxonomies, $args ) {
$new_terms = array();
if ( in_array( 'product_cat', $taxonomies ) && ! is_admin() &&is_shop() ) {
foreach( $terms as $key => $term ) {
if ( !in_array( $term->slug, array( 'uncategorized' ) ) ) { //ваш слаг категории
$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