Skip to content

Instantly share code, notes, and snippets.

@tuanbbhero
Created March 14, 2019 02:32
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save tuanbbhero/cd8cd86e4e1c5a52ffced9548c86f162 to your computer and use it in GitHub Desktop.
Save tuanbbhero/cd8cd86e4e1c5a52ffced9548c86f162 to your computer and use it in GitHub Desktop.
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() ) {
$q->set( 'tax_query', array(array(
'taxonomy' => 'product_cat',
'field' => 'slug',
'terms' => array( 'albums' ), // change 'albums' with your product category slug
'operator' => 'IN'
)));
}}
remove_action( 'pre_get_posts', 'custom_pre_get_posts_query',9999 );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment