woocommerce_order_review( bool $deprecated = false )

Output the Order review table for the checkout.


Description Description


Parameters Parameters

$deprecated

(Optional) Deprecated param.

Default value: false


Top ↑

Source Source

File: includes/wc-template-functions.php

	function woocommerce_order_review( $deprecated = false ) {
		wc_get_template(
			'checkout/review-order.php',
			array(
				'checkout' => WC()->checkout(),
			)
		);
	}


Top ↑

User Contributed Notes User Contributed Notes

You must log in before being able to contribute a note or feedback.