获取多个类别的所有产品 (Woocommerce/Wordpress)

Get all products from multiple categories (Woocommerce/Wordpress)

我想一次显示多个类别的所有产品。

当我想显示一个类别中的所有产品时,我的 $args 数组如下所示:

$args = array(
   'post_type' => 'product',
   'product_cat' => 'backpacks',
   'orderby' => '_sku'
);

我记得我可以简单地在我的 $args 中创建一个数组:

$args = array(
   'post_type' => 'product',
   'product_cat' => array(
      'backpacks','accessoires',
),
   'orderby' => '_sku'
);

但它给我以下错误:

Warning: urlencode() expects parameter 1 to be string, array given in C:\xampp\htdocs\live\wp-includes\formatting.php on line 4312

我知道这很简单,但我不明白为什么它不起作用。 感谢您的帮助!

请尝试以下代码段。

$sortcolumn = 'ID';
$prod_categories = array(12, 17); //category IDs
$product_args = array(
    'numberposts' => -1,
    'post_status' => array('publish', 'pending', 'private', 'draft'),
    'post_type' => array('product', 'product_variation'), //skip types
    'orderby' => $sortcolumn,
    'order' => 'ASC',
);

if (!empty($prod_categories)) {
    $product_args['tax_query'] = array(
        array(
            'taxonomy' => 'product_cat',
            'field' => 'id',
            'terms' => $prod_categories,
            'operator' => 'IN',
    ));
}

$products = get_posts($product_args);

找到了一个简单的方法

$args = array(
'post_type' => 'product',
'tax_query' => array(
    'relation' => 'OR',
    array(
        'taxonomy' => 'product_cat',
        'field' => 'slug',
        'terms' => 'backpacks'
    ),
    array(
        'taxonomy' => 'product_cat',
        'field' => 'slug',
        'terms' => 'accessoires'
    )
),
);