wordpress check if user exists by email code example
Example: check email exist or not wordpress
$email = '[email protected]';
$exists = email_exists( $email );
if ( $exists ) {
echo "That E-mail is registered to user number " . $exists;
} else {
echo "That E-mail doesn't belong to any registered users on this site";
}