Filters whether the plaintext password matches the hashed password.
Parameters
$check
bool- Whether the passwords match.
$password
string- The plaintext password.
$hash
string- The hashed password.
$user_id
string|int- Optional ID of a user associated with the password.
Can be empty.
Source
return apply_filters( 'check_password', $check, $password, $hash, $user_id );
User Contributed Notes
You must log in before being able to contribute a note or feedback.