如何在woocommerce中按产品ID获取产品列表

时间:2019-05-22 22:50:44

标签: wordpress woocommerce

我正在尝试通过ID数组获取woocommerce产品列表,例如1001、1002 ...

尝试对WP_Query使用“ post__in”参数,但从未从所需的ID数组中获得任何产品。

这是我使用的代码:

$query_args = array(
    'post_type' => 'product',
    'post__in'=> array(1001, 1002)
);
$result = new WP_Query( $query_args );

1 个答案:

答案 0 :(得分:1)

$ args = array(

'include' => array( 134, 200, 210, 340 ),

); $ products = wc_get_products($ args); 你可以试试这个