03 Dec 2011

WordPress: Remove Default Contact Methods

You can remove the default contact methods (AIM, Yahoo IM, Jabber / Google Talk) in Personal Options. Add the following lines to your Theme’s template functions.php file or create it as a Plugin by filling the additional Standard Plugin Information:

add_filter( 'user_contactmethods', 'custom_user_contactmethods' );
function custom_user_contactmethods( $user ) {
        $user_contactmethods = array(
                'aim',
                'yim',
                'jabber'
        );

        foreach ( $user_contactmethods as $user_contactmethod ) {
                unset( $user[$user_contactmethod] );
        }

        return $user;
}