Skip to content

Instantly share code, notes, and snippets.

@boluda
Created July 21, 2022 08:04
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save boluda/8b4359774b9bfef35cb6adc32d79371f to your computer and use it in GitHub Desktop.
Save boluda/8b4359774b9bfef35cb6adc32d79371f to your computer and use it in GitHub Desktop.
/* 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