Skip to content

Instantly share code, notes, and snippets.

@evrpress
Last active August 7, 2016 09:48
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 evrpress/c2cc116114299a9ea79d to your computer and use it in GitHub Desktop.
Save evrpress/c2cc116114299a9ea79d to your computer and use it in GitHub Desktop.
Uppercase first and lastname
function my_uppercase_name( $data ) {
if(isset($data['firstname'])) $data['firstname'] = ucwords($data['firstname']);
if(isset($data['lastname'])) $data['lastname'] = ucwords($data['lastname']);
return $data;
}
add_filter( 'mymail_verify_subscriber', 'my_uppercase_name' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment