woocommerce_after_order_details action-hookWC 4.4.0

Action hook fired after the order details.

Usage

add_action( 'woocommerce_after_order_details', 'wp_kama_woocommerce_after_order_details_action' );

/**
 * Function for `woocommerce_after_order_details` action-hook.
 * 
 * @param WC_Order $order Order data.
 *
 * @return void
 */
function wp_kama_woocommerce_after_order_details_action( $order ){

	// action...
}
$order(WC_Order)
Order data.

Changelog

Since 4.4.0 Introduced.

Where the hook is called

In file: /templates/order/order-details.php
woocommerce_after_order_details
woocommerce/templates/order/order-details.php 111
do_action( 'woocommerce_after_order_details', $order );

Where the hook is used in WooCommerce

Usage not found.