Skip to content

Instantly share code, notes, and snippets.

@wykydtronik
Created April 15, 2017 05:10
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 wykydtronik/c3213ede9e1eb56c7daf924719d2c886 to your computer and use it in GitHub Desktop.
Save wykydtronik/c3213ede9e1eb56c7daf924719d2c886 to your computer and use it in GitHub Desktop.
How To Remove Default personal_options in User Profiles
// Remove Default personal_options
add_filter('user_contactmethods','hide_profile_fields',10,1);
function hide_profile_fields( $contactmethods ) {
unset($contactmethods['aim']);
unset($contactmethods['jabber']);
unset($contactmethods['yim']);
return $contactmethods;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment