我厌倦了在几天内搜索一个单独的工作答案,我想在woocommerce rest api of orders中循环使用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中的单个订单中选择多个项目来增加。
我在这里问了同样的问题:Creating order Line items dynamically on Woocommerce Rest API
但我不知道为什么我的问题无缘无故被贬低。
我想动态获取此
$order['line_items'] = array(
array(
'product_id' => 93,
'quantity' => 2
),
array(
'product_id' => 22,
'variation_id' => 23,
'quantity' => 1
),
);
$results = $client->post( 'orders', $order );
敬请专家帮助。