Skip to content

Instantly share code, notes, and snippets.

@mikeott
Created September 24, 2022 23:03
Show Gist options
  • Save mikeott/cc67cd12e25c8f6d51d3bbe5a72a4e9f to your computer and use it in GitHub Desktop.
Save mikeott/cc67cd12e25c8f6d51d3bbe5a72a4e9f to your computer and use it in GitHub Desktop.
WordPress additional user profile fields
/* Additional user profile fields */
function extra_profile_details( $methods ) {
$methods['new_email'] = __( "New email", "wproject" );
return $methods;
}
add_filter('user_contactmethods','extra_profile_details',10,1);
‎‎​
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment