我已经厌倦了搜索在几天的只是一个单一的工作答案这是我想要的订单woocommerce REST API line_items的循环数组。
我来到距离太近是这个https://wordpress.org/support/topic/how-to-pass-the-line_items-parameter-in-orders-rest-api/
一个人指出行项目应在阵列(阵列(ITEM1),阵列(ITEM2),....)格式:ITEM1,ITEM2增加了由在woocommerce REST API选择在单个订单多个项目。
我在这里问同样的问题: 在Woocommerce REST API动态创建订单行项目
但我不知道为什么我的问题是downvoted没有理由。
我要动态地获得这种
$order['line_items'] = array(
array(
'product_id' => 93,
'quantity' => 2
),
array(
'product_id' => 22,
'variation_id' => 23,
'quantity' => 1
),
);
$results = $client->post( 'orders', $order );
请专家帮忙将不胜感激。