Skip to content
Advertisement

how i can retrieve all woocommerce orders in new custom plugin

i’m creating a new custom plugin and need to retrieve all woocommerce orders

i tried to use : wc_get_orders() function to retrieve all woocommerce orders but i got

JavaScript

and did this :

JavaScript

but i got :

JavaScript

how i can retrieve all woocommerce orders

Advertisement

Answer

WooCommerce already provided API to get all orders https://example.com/wp-json/wc/v3/orders

For more details please see the documentation


If you want function based instead of REST API then, please do like this:

You should call your order function into the action hook woocommerce_after_register_post_type to work properly. So please enclose your function call like this:

JavaScript

Then you can loop through the object and fetch all the necessary details for e.g.

JavaScript

For more details please check this article.

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