Skip to content

Instantly share code, notes, and snippets.

@Steven-Rose
Created February 3, 2012 07:29
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 Steven-Rose/1728768 to your computer and use it in GitHub Desktop.
Save Steven-Rose/1728768 to your computer and use it in GitHub Desktop.
WP: Remove extra contact methods from user info
function remove_contact_methods( $contact_methods ) {
unset($contact_methods['yim']); // Remove Yahoo IM
unset($contact_methods['aim']); // Remove AIM
unset($contact_methods['jabber']); // Remove Jabber
return $contact_methods;
}
add_filter('user_contactmethods','remove_contact_methods',10,1);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment