How to remove User profile fields
Tuesday, August 24th, 2010Similar to this post, you can add a new function that is called by the "user_contactmethods" filter. Then, unset the values for the contact methods you no longer would like. For AIM, you would do the following in your functions.php file: function bwa_remove_some_contactmethods( $contactmethods ) { unset($contactmethods['aim']); return $contactmethods; } add_filter('user_contactmethods','bwa_remove_some_contactmethods',10,1); You can modify the other items ...