um_after_changing_user_password

Hook type

Action

Description

Hook that runs after user change their password

Parameters

$user_id

(int) User ID

Usage

add_action( 'um_after_changing_user_password', 'function_name', 10, 1 );

Examples

<?php
add_action( 'um_after_changing_user_password', 'my_after_changing_user_password', 10, 1 );
function my_user_login_extra( $user_id ) {
    // your code here
}
?>

Change Log

Since: 2.0

Source

um_after_changing_user_password is located in includes/core/um-actions-password.php::line 70