|

Remove Unwanted Profile Fields

Below is the code you would use to hide unwanted Profile fields.

1
2
3
4
5
6
7
8
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;
}

Similar Posts

Leave a Reply

Your email address will not be published. Required fields are marked *