Skip to content

Instantly share code, notes, and snippets.

@yuriinalivaiko
Created November 4, 2022 12:53
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save yuriinalivaiko/ff89015ebb25caa695d5c244f773e5ff to your computer and use it in GitHub Desktop.
Save yuriinalivaiko/ff89015ebb25caa695d5c244f773e5ff to your computer and use it in GitHub Desktop.
Hook um_reset_password_errors_hook
<?php
/**
* Hook: um_reset_password_errors_hook
*
* Type: action
*
* Description: Fires on reset password form submit.
* Used in the core to process reset password validation.
* May be used to extend reset password validation.
*
* @example https://github.com/ultimatemember/ultimatemember/blob/master/includes/core/class-password.php#L358
* @link https://docs.ultimatemember.com/article/1238-umresetpassworderrorshook
*
* @package um\core
* @see um\core\Password::form_init()
* @see um\core\Password::um_change_password_process_hook()
* @since 2.0
* @deprecated since version 3.0
*
* @param array $post Submitted data.
*/
function my_reset_password_errors( $post ) {
// your code here.
}
add_action( 'um_reset_password_errors_hook', 'my_reset_password_errors', 10, 1 );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment