WooCommerce: See What’s Inside the Order Array (print_r)
When coding in PHP for WooCommerce, sometimes you’ll need to know what’s inside the “Order Array”, so that you can use its elements to print some custom message on the thank you page, or maybe modify its default behaviour.
There is a great PHP function that helps a lot – it’s called print_r() and you can use this to “see” what’s inside the order array 🙂
WooCommerce: print Order array
PHP Snippet: Print WooCommerce Order Array on the Thank you Page
/**
* @snippet See what is inside the Order array - WooCommerce
* @how-to Get CustomizeWoo.com FREE
* @sourcecode https://businessbloomer.com/?p=21945
* @author Rodolfo Melogli
* @compatible WC 2.6.14, WP 4.7.2, PHP 5.5.9
*/
add_action( 'woocommerce_thankyou', 'bbloomer_print_order_array', 5 );
function bbloomer_print_order_array( $orderid ) {
$order = wc_get_order( $orderid );
print_r( $order );
}
This code still works, unless you report otherwise. To exclude conflicts, temporarily switch to the Storefront theme, disable all plugins except WooCommerce, and test the snippet again: WooCommerce troubleshooting 101
Related content
WooCommerce: Get Product IDs (All, by Tag, by Category) When you work with WooCommerce PHP snippets, you often need to “get” stuff off your WordPress database in order to make some calculations and return the result on the screen. And if there is something I often google is “How do I get all my store’s product IDs?“. Thankfully the wc_get_products WooCommerce function gives us […]
WooCommerce: Get All Shipping Zones & Rates As an advanced WooCommerce developer, at some stage you’re really going to need this PHP function, the same way you often browse through Business Bloomer’s WooCommerce visual hook guides or the product / order / cart getters. This time we go study how to “get” the shipping zones and rates, because it’s likely that you […]
WooCommerce: Get Product / Order Cross-Sells Getting the list of cross-sells for a WooCommerce product is actually super easy (yes, it’s one line of PHP). But what if you need to “calculate” the list of cross-sells for an entire order, made of different products? In this short tutorial for developers we’ll see both: how to get the cross-sell IDs for a […]
Rodolfo Melogli
Business Bloomer Founder
Author, WooCommerce expert and WordCamp speaker, Rodolfo has worked as an independent WooCommerce freelancer since 2011. His goal is to help entrepreneurs and developers overcome their WooCommerce nightmares. Rodolfo loves travelling, chasing tennis & soccer balls and, of course, wood fired oven pizza. Follow @rmelogli
2 thoughts on “WooCommerce: See What’s Inside the Order Array (print_r)”
Questions? Feedback? Customization? Leave your comment now! _____
If you are writing code, please wrap it like so: [php]code_here[/php]. Failure to complying with this, as well as going off topic or not using the English language will result in comment disapproval. You should expect a reply in about 2 weeks - this is a popular blog but I need to get paid work done first. Please consider joining the Business Bloomer Club to get quick WooCommerce support. Thank you!
Wouldn’t it be a good idea for the print_r to only echo for specific roles or capabilities like store manager or site admin?
Good point. I should’ve specified this snippet is only helpful during development/troubleshooting so it shouldn’t be used by other users otherwise