apply_filters( ’email_exists’, int|false $user_id, string $email )

In this article

Filters whether the given email exists.

Parameters

$user_idint|false
The user ID associated with the email, or false if the email does not exist.
$emailstring
The email to check for existence.

Source

return apply_filters( 'email_exists', $user_id, $email );

Changelog

VersionDescription
5.6.0Introduced.

User Contributed Notes

You must log in before being able to contribute a note or feedback.