Uses
Uses | Description |
---|---|
wp-includes/pluggable.php: get_user_by() | Retrieve user info by a given field |
Determines whether the given email exists.
For more information on this and similar theme functions, check out the Conditional Tags article in the Theme Developer Handbook.
(string) (Required) Email.
(int|false) The user's ID on success, and false on failure.
This function will check whether or not a given email address ($email) has already been registered to a username, and returns that users ID (or false if none exists). See also username_exists.
This function is normally used when a user is registering, to ensure that the E-mail address the user is attempting to register with has not already been registered.
File: wp-includes/user.php
function email_exists( $email ) { $user = get_user_by( 'email', $email ); if ( $user ) { return $user->ID; } return false; }
Version | Description |
---|---|
2.1.0 | Introduced. |
© 2003–2019 WordPress Foundation
Licensed under the GNU GPLv2+ License.
https://developer.wordpress.org/reference/functions/email_exists