Created
January 5, 2019 09:21
-
-
Save Tsunamijaan/1234b93b85250d95f2d2c9bf507b72e1 to your computer and use it in GitHub Desktop.
Not display some category products on the shop page
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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