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

	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.