Skip to content

Instantly share code, notes, and snippets.

@rupert-ong
Created April 24, 2012 18:04
Show Gist options
  • Save rupert-ong/2482114 to your computer and use it in GitHub Desktop.
Save rupert-ong/2482114 to your computer and use it in GitHub Desktop.
Wordpress: Contact Methods to Profile
function my_user_contactmethods($user_contactmethods){
$user_contactmethods['twitter'] = 'Twitter Username';
$user_contactmethods['facebook'] = 'Facebook Username';
return $user_contactmethods;
}
add_filter('user_contactmethods', 'my_user_contactmethods');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment