Skip to content
Advertisement

WooCommerce new order action – get order information

I am using this to create a new function in my functions.php file

JavaScript

it is to execute some custom code when a new order is placed, how can i get the order information (ordered products etc) inside my function

Advertisement

Answer

You can use $order_id as a parameter for your woocommerce_new_order callback and get the order details from the $order_id.

Example:

JavaScript

References:

http://hookr.io/actions/woocommerce_new_order/

https://docs.woothemes.com/wc-apidocs/class-WC_Order.html

User contributions licensed under: CC BY-SA
10 People found this is helpful
Advertisement