woocommerce_order_review()WC 1.0

Output the Order review table for the checkout.

No Hooks.

Return

null. Nothing (null).

Usage

woocommerce_order_review( $deprecated );
$deprecated(true|false)
Deprecated param.
Default: false

woocommerce_order_review() code WC 8.7.0

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