woocommerce_after_order_details
Action hook fired after the order details.
Использование
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.
Список изменений
С версии 4.4.0 | Введена. |
Где вызывается хук
В файле: /templates/order/order-details.php
woocommerce_after_order_details
woocommerce/templates/order/order-details.php 115
do_action( 'woocommerce_after_order_details', $order );