我正在尝试通过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 );
答案 0 :(得分:1)
$ args = array(
'include' => array( 134, 200, 210, 340 ),
); $ products = wc_get_products($ args); 你可以试试这个