um_after_user_account_updated
Hook type
Action
Description
Fired on account page, after updating profile
Parameters
$user_id
(int) User ID
$changes
(array) Submitted data
Usage
add_action( 'um_after_user_account_updated', 'function_name', 10, 2 );
Examples
<?php add_action( 'um_after_user_account_updated', 'my_after_user_account_updated', 10, 2 ); function my_after_user_account_updated( $user_id, $changes ) { // your code here } ?>
Change Log
Since: 2.0
Source
um_after_user_account_updated
is located in includes/core/um-actions-account.php::line 312