Add a custom field to an order in WooCommerce 3+
In WooCommerce, I would like to add a new custom field to order details. I now that I can use use the code below to create a new custom field 'referenceNumber' and adds in it "ordercreated" value: update_post_meta($order_id, 'referenceNumber', 'ordercreated']);…