woocommerce_customer_object_updated_props action-hookWC 1.0

Usage

add_action( 'woocommerce_customer_object_updated_props', 'wp_kama_woocommerce_customer_object_updated_props_action', 10, 2 );

/**
 * Function for `woocommerce_customer_object_updated_props` action-hook.
 * 
 * @param  $customer      
 * @param  $updated_props 
 *
 * @return void
 */
function wp_kama_woocommerce_customer_object_updated_props_action( $customer, $updated_props ){

	// action...
}
$customer
-
$updated_props
-

Where the hook is called

WC_Customer_Data_Store::update_user_meta()
woocommerce_customer_object_updated_props
woocommerce/includes/data-stores/class-wc-customer-data-store.php 323
do_action( 'woocommerce_customer_object_updated_props', $customer, $updated_props );

Where the hook is used in WooCommerce

Usage not found.