woocommerce_update_new_customer_past_order хук-событиеWC 1.0

Использование

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
-

Где вызывается хук

wc_update_new_customer_past_orders()
woocommerce_update_new_customer_past_order
woocommerce/includes/wc-user-functions.php 271
do_action( 'woocommerce_update_new_customer_past_order', $order_id, $customer );

Где используется хук в WooCommerce

Использование не найдено.