How can I get the order ID in WooCommerce?

moslem picture moslem · Feb 7, 2014 · Viewed 102.8k times · Source

How do I retrieve the order ID in WooCommerce?

Answer

Elvis Fernandes picture Elvis Fernandes · Aug 21, 2014

This is quite an old question now, but someone may come here looking for an answer:

echo $order->id;

This should return the order id without "#".

EDIT (feb/2018)

The current way of accomplishing this is by using:

$order->get_id();