I need to do some customization to my store but I don't know how to create a WooCommerce Order in PHP with WC_Order class. How can I accomplish that?
This is the code I've tried:
//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;