um_after_user_updated

Hook type

Action

Description

Some actions after user profile updated

Parameters

$user_id

(int) User ID

$args

(array) Form Data

$userinfo

(array) Submitted User Data

Usage

add_action( 'um_after_user_updated', 'function_name', 10, 33 );

Examples

<?php
add_action( 'um_after_user_updated', 'my_after_user_updated', 10, 3 );
function my_after_user_updated( $user_id, $args, $userinfo ) {
    // your code here
}
?>

Change Log

Since: 2.0

Source

um_after_user_updated is located in includes/core/um-actions-profile.php::line 339