创建WooCommerce订单

时间:2013-04-26 11:57:19

标签: php wordpress woocommerce orders

我需要对我的商店进行一些自定义,但我不知道如何使用WC_Order类在PHP中创建WooCommerce订单。我怎么能做到这一点?

这是我尝试过的代码:

//Here I try to create a new order
$order_fab = new WC_Order();
//I save the new order ID
$order_fab_id = $order_fab->id; 
//I clone the original order
$order_fab = $order;
//restore the new order ID
$order_fab->id = $order_fab_id;

1 个答案:

答案 0 :(得分:1)

您可能需要使用WC_Checkout类中的create_order方法。您还可以查看处理结帐流程的功能。这就是创建订单的地方。