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
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(),
)
);
}