从产品查询中排除自定义分类

发布于 2025-01-11 15:01:34 字数 799 浏览 0 评论 0原文

在 woocommerce 安装中,我添加了产品的自定义分类法。其中之一是带有“促销”一词的季节。

我想从商店页面中排除这些促销商品。所以我使用了下面的函数,但它似乎不起作用。该函数实际上适用于自定义分类法吗?

源代码: https://woocommerce.com/document/从商店页面中排除类别/

add_action( 'woocommerce_product_query', 'custom_pre_get_posts_query' );  
function custom_pre_get_posts_query( $q ) {
    global $woocommerce;
        $tax_query = (array) $q->get( 'tax_query' );
        $tax_query[] = array(
               'taxonomy' => 'season', // taxonomy
               'field' => 'slug',
               'terms' => array( 'sale' ), //slug taxonomies
               'operator' => 'NOT IN'
        );
        $q->set( 'tax_query', $tax_query );
}

In a woocommerce installation I added custom taxonomies for products. One of them is season with a term 'sale'.

I want to exclude these sale items from the shop page. So I used below function, but it doesn't seem to work. Is this function actually working for a custom taxonomy?

Source code: https://woocommerce.com/document/exclude-a-category-from-the-shop-page/

add_action( 'woocommerce_product_query', 'custom_pre_get_posts_query' );  
function custom_pre_get_posts_query( $q ) {
    global $woocommerce;
        $tax_query = (array) $q->get( 'tax_query' );
        $tax_query[] = array(
               'taxonomy' => 'season', // taxonomy
               'field' => 'slug',
               'terms' => array( 'sale' ), //slug taxonomies
               'operator' => 'NOT IN'
        );
        $q->set( 'tax_query', $tax_query );
}

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文