miriam-m
9/17/2016 - 11:33 AM

To hide a product category from the shop page Add to functions.php

To hide a product category from the shop page Add to functions.php

add_action( 'pre_get_posts', 'custom_pre_get_posts_query' );
function custom_pre_get_posts_query( $q )
{

if (!$q->is_main_query() || !is_shop()) return;
if ( ! is_admin() )
{
$q->set( 'tax_query', array(array(
'taxonomy' => 'product_cat',
'field' => 'id',
'terms' => array( 57 ),
'operator' => 'NOT IN'
)));

}
}