Exclude products from a particular category on the shop page
Source: https://docs.woocommerce.com/document/exclude-a-category-from-the-shop-page/
//Exclude products from a particular category on the shop page
function custom_pre_get_posts_query( $q ) {
$tax_query = (array) $q->get( 'tax_query' );
$tax_query[] = array(
'taxonomy' => 'product_cat',
'field' => 'slug',
\!h 'terms' => array( '__slug__' ), //add category slug to array
'operator' => 'NOT IN'
);
$q->set( 'tax_query', $tax_query );
}
add_action( 'woocommerce_product_query', 'custom_pre_get_posts_query' );