Home » WooCommerce: See What’s Inside the Order Array (print_r)

WooCommerce: See What’s Inside the Order Array (print_r)

by Tutor Aspire

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 tutoraspire.com FREE
 * @sourcecode    https://tutoraspire.com/?p=21945
 * @author        Tutor Aspire
 * @compatible    WC 2.6.14, WP 4.7.2, PHP 5.5.9
 */

add_action( 'woocommerce_thankyou', 'tutoraspire_print_order_array', 5 );

function tutoraspire_print_order_array( $orderid ) {
$order = wc_get_order( $orderid );
print_r( $order );
}

You may also like