Woocommerce Products Widget for a specific categor

2019-08-22 22:24发布

How can I make the Woocommerce Products Widget display Products of a specific Category only? Current options are on-sale, featured, and all.

1条回答
我只想做你的唯一
2楼-- · 2019-08-22 23:11

This can be done with a custom function hooked in woocommerce_products_widget_query_args filter hook. You will have to set inside it, in the array, your product category (or your product categories if more than one).

Here is the code:

add_filter( 'woocommerce_products_widget_query_args', function( $query_args ){
    // Set HERE your product category slugs 
    $categories = array( 'music', 'posters' );

    $query_args['tax_query'] = array( array(
        'taxonomy' => 'product_cat',
        'field'    => 'slug',
        'terms'    => $categories,
    ));

    return $query_args;
}, 10, 1 );

Code goes in function.php file of your active child theme (or theme) or also in any plugin file.

Tested in WooCommerce 3+ and works

查看更多
登录 后发表回答