根据自定义产品属性值过滤 Woocommerce 产品

Filter Woocommerce products based on custom product attribute value

在 Woocommerce 中,我有一个名为 restriction_id 的产品属性。我想根据某些 限制 ID 过滤产品。例如,如果在 php 会话变量中将值设置为 35 我想过滤掉任何具有 restriction_id 设置属性的产品至 35.

我会在这里放什么?

这是我的起始代码:

// Define the woocommerce_product_query callback 
function action_woocommerce_product_query( $q, $instance ) { 
    // The code
}; 
// Add the action
add_action( 'woocommerce_product_query', __NAMESPACE__.'\action_woocommerce_product_query', 10, 2 ); 

感谢任何帮助。

已更新:请尝试以下 tax query

add_filter( 'woocommerce_product_query_tax_query', 'custom_product_query_meta_query', 10, 2 );
function custom_product_query_meta_query( $tax_query, $query ) {
    if( is_admin() ) return $tax_query;

    // HERE set the taxonomy of your product attribute (custom taxonomy)
    $taxonomy = 'pa_restriction_id'; // Note: always start with "pa_" in Woocommerce

    // HERE Define your product attribute Terms to be excluded
    $terms = array( '35' ); // Note: can be a 'term_id', 'slug' or 'name'

    // The tax query
    $tax_query[] = array(
        'taxonomy'         => $taxonomy,
        'field'            => 'slug', // can be a 'term_id', 'slug' or 'name'
        'terms'            => $terms,
        'operator'         => 'NOT IN', // Excluded
    );

    return $tax_query;
}

代码进入您的活动子主题(或活动主题)的 function.php 文件。已测试并有效。