3

我一直在尝试从 SHOP 页面隐藏特定类别。我找到了这段代码:

add_filter( '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;

    $q->set( 'tax_query', array(array(
        'taxonomy' => 'product_cat',
        'field' => 'slug',
        'terms' => array( 'CATEGORY TO HIDE' ),
        'operator' => 'NOT IN'
    )));

    remove_filter( 'pre_get_posts', 'custom_pre_get_posts_query' );

}

我已将此代码粘贴到我的主题 function.php 文件中,但我没有实现结果...

有人可以帮我吗?

4

4 回答 4

7

我知道这有点晚了,但我自己也遇到了这个问题,并用以下函数解决了这个问题:

add_filter( 'get_terms', 'get_subcategory_terms', 10, 3 );

function get_subcategory_terms( $terms, $taxonomies, $args ) {

  $new_terms = array();

  // if a product category and on the shop page
  if ( in_array( 'product_cat', $taxonomies ) && ! is_admin() && is_shop() ) {

    foreach ( $terms as $key => $term ) {

      if ( ! in_array( $term->slug, array( '**CATEGORY-HERE**' ) ) ) {
        $new_terms[] = $term;
      }

    }

    $terms = $new_terms;
  }

  return $terms;
}
于 2013-10-23T21:54:23.730 回答
1

隐藏除管理后端之外的所有类别的简单方法:

functions.php

add_filter( 'get_terms', 'hide_category', 10, 1 );
function hide_category( $terms ) {
  $new_terms = array();
  foreach ( $terms as $term ) {
    if ( $term->slug !== 'secret_category' ) {
      $new_terms[] = $term;
    } else if ( $term->taxonomy !== 'product_cat' || is_admin() ) {
      $new_terms[] = $term;
    }
  }
  return $new_terms;
}

如果您只想对商店隐藏它,请添加|| !is_shop()else if条件中。

于 2019-02-05T01:13:59.407 回答
1

以下片段对我来说很好用:

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( 'your category slug' ), // Don't display products in the knives category on the shop page
            'operator' => 'NOT IN'
        )));

    }

    remove_action( 'pre_get_posts', 'custom_pre_get_posts_query' );

}

我想知道如何在类别中排除的产品通过产品搜索来实现相同的功能,同时使用这些产品完全隐藏的片段。

于 2016-06-14T12:54:06.137 回答
0

如果你想在你的主题中隐藏一些类别,你可以exclude在函数中传递参数wp_list_categories

wp_list_categories( array(
'taxonomy'              =>  'product_cat',
'hide_empty'            =>  1,
'use_desc_for_title'    =>  0,
'title_li'              =>  ' ',
'show_count'            =>  0,
'exclude'               =>  '63'    // <-- Hidden) );
于 2013-03-07T22:16:14.463 回答