Display the thank you for your order URL in woocommerce

If you need to find the url for "thank you for your order" in WooCommerce for a given order then you can use this short function to find the url 🙂

$pid changes to the postid of the order you want to check.


/*--------------------------------------------------------------
Get Order Thank You Page Url
--------------------------------------------------------------*/
function print_order_url($pid = 261679 ){
	$order = new WC_Order( $pid );
	var_dump($order->get_checkout_order_received_url());
}</p>
<p>add_action('wp_head', 'print_order_url');