woocommerce_after_order_details action-hook . WC 4.4.0
Action hook fired after the order details.
Usage
add_action( 'woocommerce_after_order_details', 'action_function_name_5300' ); function action_function_name_5300( $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 110
do_action( 'woocommerce_after_order_details', $order );