Skip to content

Instantly share code, notes, and snippets.

@gasatrya
Created July 16, 2013 03:56
Show Gist options
  • Save gasatrya/6005651 to your computer and use it in GitHub Desktop.
Save gasatrya/6005651 to your computer and use it in GitHub Desktop.
Remove default author profile fields
<?php
add_filter( 'user_contactmethods', 'hide_profile_fields', 10, 1 );
/**
* Remove default author profile fields
*
*/
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