Created
May 16, 2014 12:13
-
-
Save michaelwilhelmsen/3bc349b7c62c1e0ae1c7 to your computer and use it in GitHub Desktop.
Hide products that are packages or subscription which belong to a page or has its own page by adding this into functions.php
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
| 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() ) { | |
| $q->set( 'tax_query', array(array( | |
| 'taxonomy' => 'product_cat', | |
| 'field' => 'slug', | |
| 'terms' => array( 'PUT YOUR CATEGORY HERE' ), // Don't display products in the membership category on the shop page . For multiple category , separate it with comma. | |
| '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