Remove product categories from shop page

add_action( ‘pre_get_posts’, ‘remove_categories_shop’ ); function remove_categories_shop( $q ) { if ( ! $q->is_main_query() ) return; if ( ! $q->is_post_type_archive() ) return; if ( ! is_admin() && is_shop() && ! is_user_logged_in() ) { $q->set( ‘tax_query’, array(array( ‘taxonomy’ => ‘product_cat’, ‘field’ => ‘slug’, // Don’t display products in these categories on the shop page ‘terms’ => array( ‘color’, ‘flavor’, ‘spices’, ‘vanilla’ ), ‘operator’ => ‘NOT IN’ ))); } remove_action( ‘pre_get_posts’, ‘remove_categories_shop’ ); }

Be the first to comment

You can use [html][/html], [css][/css], [php][/php] and more to embed the code. Urls are automatically hyperlinked. Line breaks and paragraphs are automatically generated.