Created
July 21, 2022 08:04
-
-
Save boluda/8b4359774b9bfef35cb6adc32d79371f to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* Force email lowercase on WordPress registration | |
------------------------------------------------------------------ */ | |
function filter_pre_user_email( $raw_user_email ) { | |
$raw_user_email = strtolower($raw_user_email); | |
return $raw_user_email; | |
}; | |
// add the filter | |
add_filter( 'pre_user_email', 'filter_pre_user_email', 10, 1 ); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment