Php Woocommerce-根据变化列出产品

Php Woocommerce-根据变化列出产品,php,wordpress,woocommerce,Php,Wordpress,Woocommerce,我需要一个项目通过一个php变量对整个产品列表按自定义属性的特定变体进行排序,我在列出具有特定变体的产品时遇到困难,我尝试了多个meta_query或tax_query语句,类似于: add_filter('woocommerce_ordering_args', 'custom_woocommerce_ordering_args'); function custom_woocommerce_ordering_args( $args ) { $args = array( 'pos

我需要一个项目通过一个php变量对整个产品列表按自定义属性的特定变体进行排序,我在列出具有特定变体的产品时遇到困难,我尝试了多个meta_query或tax_query语句,类似于:

add_filter('woocommerce_ordering_args', 'custom_woocommerce_ordering_args');

function custom_woocommerce_ordering_args( $args ) {
    $args = array(
    'post_type' => 'product',
    'meta_query' => array(
        array(
            'key' => 'pa_attribute',
            'value' => 'attribute_value',
            'compare' => '=',
        )
    )
    );
    $query = new WP_Query( $args );
}
其中attribute是我设置的变量属性,attribute_值是我正在搜索的值

它似乎对产品查询没有任何作用

提前谢谢你