Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- add_filter( 'user_contactmethods' , 'wps_change_contactmethods' , 10 , 1 );
- /**
- * Change Contact Methods in User Profile
- *
- */
- function wps_change_contactmethods( $contactmethods ) {
- // Add Contact Methods
- $contactmethods['twitter'] = 'Twitter';
- $contactmethods['facebook'] = 'Facebook';
- $contactmethods['linkedin'] = 'LinkedIn Profile URL';
- $contactmethods['flickr'] = 'Flickr';
- $contactmethods['youtube'] = 'YouTube';
- $contactmethods['stumbleupon'] = 'StumbleUpon';
- $contactmethods['google_profile'] = 'Google Profile URL';
- $contactmethods['gmail'] = 'Gmail';
- // Remove Contact Methods
- unset( $contactmethods['aim'] );
- unset( $contactmethods['yim'] );
- unset($contactmethods['jabber']);
- return $contactmethods;
- }
Advertisement
Add Comment
Please, Sign In to add comment