periksa email ada atau tidak 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";
}
Adventurous Alligator