从多个产品类别中获取 WooCommerce 混合 10 种产品

Get WooCommerce mixed 10 products from multiple product categories

在 WooCommerce 中,我试图从多个类别中获取 10 种产品,这是我的代码:

$args = array(
        'post_type'      => 'product',
        'posts_per_page' => 10,
        'product_cat'    => 'ring,watch,earring'
    )
);
$loop = new WP_Query( $args );

我只从第一个类别中获得了 10 个产品。

有没有办法从多个类别中获取 10 个混合产品?

已更新

您的代码有点过时,请尝试使用以下方法从特定产品类别条款查询产品使用参数“orderby”设置为“rand” (随机排序) 让他们混淆:

$loop = new WP_Query( array(
    'post_type'      => 'product',
    'posts_per_page' => 10,
    'post_status'    => 'publish',
    'orderby'       => 'rand',
    'tax_query'      => array( array(
        'taxonomy' => 'product_cat',
        'field'    => 'slug',
        'terms'    => array('ring', 'watch', 'earring'),
     ) ),
) );

已测试并可以使用。