Forums
Home / Plugin: Custom Order Numbers for WooCommerce / Get next custom order number
(@jimmykwk)
2 years, 3 months ago
Hi, thanks for the awesome plugin. May I know how can I get the next custom order id? I’m able to retrieve existing custom order number this way $order->get_meta_data()[0]->get_data().
(@tychesoftwares)
Hi @jimmykwk,
I’d suggest you try to get the custom order number using below code:
$custom_order_number = $order->get_order_number(); //where $order is an order object
Do let us know if this helped you in order to aechive your need.