Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Select an option

  • Save Tsunamijaan/1234b93b85250d95f2d2c9bf507b72e1 to your computer and use it in GitHub Desktop.

Select an option

Save Tsunamijaan/1234b93b85250d95f2d2c9bf507b72e1 to your computer and use it in GitHub Desktop.
Not display some category products on the shop page
Category name(‘shirt’, ‘tshirt’, ‘pant’) which not to want display products on the shop page
add_action( 'pre_get_posts', 'custom_pre_get_posts_query' );
function custom_pre_get_posts_query( $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',
'terms' => array( 'shirt', 'tshirt', 'pant' ), //Category name which not to want display products on the shop page
'operator' => 'NOT IN'
)));
}
remove_action( 'pre_get_posts', 'custom_pre_get_posts_query' );
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment