Get Order Id in woocommerce
global $woocommerce, $post;
$order = new WC_Order($post->ID);
add_action( 'woocommerce_thankyou', 'custom_content_thankyou', 10, 1 );
function custom_content_thankyou( $order) {
echo "This is order ID: ".$order;
}
Comments
Post a Comment