woocommerce_delete_customer action-hookWC 1.0

Usage

add_action( 'woocommerce_delete_customer', 'wp_kama_woocommerce_delete_customer_action' );

/**
 * Function for `woocommerce_delete_customer` action-hook.
 * 
 * @param  $id 
 *
 * @return void
 */
function wp_kama_woocommerce_delete_customer_action( $id ){

	// action...
}
$id
-

Where the hook is called

WC_Customer_Data_Store::delete()
woocommerce_delete_customer
woocommerce/includes/data-stores/class-wc-customer-data-store.php 243
do_action( 'woocommerce_delete_customer', $id );

Where the hook is used in WooCommerce

Usage not found.