How to Remove Default Author Profile Fields in WordPress
Upon the release of WordPress 2.9, we shared with you an article that shows you how to add fields like twitter and facebook to author profile page. In this article we will show you how you can remove unwanted default author profile fields to make WordPress admin panel more user friendly for your clients.

As you can see, we do not want to keep AIM, Yahoo IM, and Jabber/Gtalk. If you are dealing with very new level clients, then you do not want them to see this. It will only complicate things for them. To remove these default fields simply open your theme’s functions.php file and add the following code:
<?php
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;
}
?>
This will remove the contact methods like AIM, Jabber, and Yahoo IM. Now if you want to add fields then you should check out our article that talks about adding author profile fields in WordPress.
Source: Strangework by Brad Williams
Comments
5 Responses to “How to Remove Default Author Profile Fields in WordPress”Share Your Opinions
Tell us what you're thinking...
and if you want a pic to show with your comment, then get gravatar!
Please make sure that you have read our Comment Policy.











This is yet another example of the valuable information available at WP Beginner. Thanks guys.
Thanks for this one guys. We restrict all of this so this is a perfect tool to ensure we don’t have to see it either.
aah excellent post, thanks a lot
I think wp should remove these by themself,
why aim,jabber lol they should add facebook and twitter
This is great. I’ve already implemented it on two sites. Thanks so much!
This is yet another example of the valuable information available at WP Beginner. Thanks guys.