woocommerce_update_new_customer_past_order
Использование
add_action( 'woocommerce_update_new_customer_past_order', 'wp_kama_woocommerce_update_new_customer_past_order_action', 10, 2 ); /** * Function for `woocommerce_update_new_customer_past_order` action-hook. * * @param $order_id * @param $customer * * @return void */ function wp_kama_woocommerce_update_new_customer_past_order_action( $order_id, $customer ){ // action... }
- $order_id
- -
- $customer
- -
Где вызывается хук
woocommerce_update_new_customer_past_order
woocommerce/includes/wc-user-functions.php 355
do_action( 'woocommerce_update_new_customer_past_order', $order_id, $customer );