woocommerce_order_details_table( mixed $order_id )

Displays order details in a table.


Description Description


Parameters Parameters

$order_id

(Required) Order ID.


Top ↑

Source Source

File: includes/wc-template-functions.php

2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
function woocommerce_order_details_table( $order_id ) {
    if ( ! $order_id ) {
        return;
    }
 
    wc_get_template(
        'order/order-details.php',
        array(
            'order_id' => $order_id,
        )
    );
}


Top ↑

User Contributed Notes User Contributed Notes

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