woocommerce_customer_object_updated_props
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
woocommerce_customer_object_updated_props
woocommerce/includes/data-stores/class-wc-customer-data-store.php 324
do_action( 'woocommerce_customer_object_updated_props', $customer, $updated_props );