woocommerce_order_review()
Output the Order review table for the checkout.
No Hooks.
Returns
null. Nothing (null).
Usage
woocommerce_order_review( $deprecated );
- $deprecated(true|false)
- Deprecated param.
Default:false
woocommerce_order_review() woocommerce order review code WC 10.8.1
function woocommerce_order_review( $deprecated = false ) {
wc_get_template(
'checkout/review-order.php',
array(
'checkout' => WC()->checkout(),
)
);
}