woocommerce_order_details_table( mixed $order_id )
Displays order details in a table.
Description Description
Parameters Parameters
- $order_id
-
(Required) Order ID.
Source Source
File: includes/wc-template-functions.php
function woocommerce_order_details_table( $order_id ) {
if ( ! $order_id ) {
return;
}
wc_get_template(
'order/order-details.php',
array(
'order_id' => $order_id,
)
);
}