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

时间:2017-03-03 10:15:34

标签: php arrays wordpress woocommerce args

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

当我想显示一个类别的所有产品时,我的$ args数组看起来像这样:

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

我记得我只需在$ args中创建一个数组:

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

但它给了我以下错误:

  

警告:urlencode()期望参数1为字符串,数组在第4312行的C:\ xampp \ htdocs \ live \ wp-includes \ formatting.php中给出

我知道这是一件简单的事情,但我无法弄清楚为什么它不起作用。 谢谢你的帮助!

2 个答案:

答案 0 :(得分:2)

请尝试以下代码段。

$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);

答案 1 :(得分:1)

找到一种简单的方法

$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'
    )
),
);