需要一个查询,我可以从订单中获取products_ids,条件是此订单必须包含特定的 product_id 。
有了这个,我想得到的是其他用户在选择特定产品时购买的其他产品。
这是我现在正在处理的查询:
$orders = new WP_Query(
array(
'post_type' => array('shop_order'),
'post_status' => array('wc-completed', 'wc-pending')
)
);
但不知道如何插入条件。