WordPress教程: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() && ! is_user_logged_in() ) {
 
    $q->set( 'tax_query', array(array(
      'taxonomy' => 'product_cat',
      'field' => 'slug',
      'terms' => array( 'color', 'flavor', 'spices', 'vanilla' ), https:// Don't display products in these categories on the shop page
      'operator' => 'NOT IN'
    )));
 
  }
 
  remove_action( 'pre_get_posts', 'custom_pre_get_posts_query' );
 
}

在哪里添加此代码?

将PHP代码放在主题或子主题functions.php文件的底部。

WordPress技巧

WordPress教程:WooCommerce每页/每行向上销售产品数

2019-3-17 17:35:06

WordPress技巧

WordPress教程:WooCommerce快速翻译字段

2019-3-17 17:38:11

0 条回复 A文章作者 M管理员
    暂无讨论,说说你的看法吧
个人中心
购物车
优惠劵
今日签到
有新私信 私信列表
搜索