WooCommerce:在商店页面上显示唯一类别

我们看一下WooCommerce商店页面,尤其是如何只显示所需类别(排除所有其他类别)。

仿牌独立站出海专家


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( 'black' ), // change 'black' with your cat slug
         'operator' => 'IN'
      )));
    
   }
 
   remove_action( 'pre_get_posts', 'custom_pre_get_posts_query' );
 
}