Skip to content

Instantly share code, notes, and snippets.

@andornagy
Created April 2, 2013 16:59
Show Gist options
  • Save andornagy/5293967 to your computer and use it in GitHub Desktop.
Save andornagy/5293967 to your computer and use it in GitHub Desktop.
<?php
add_filter('user_contactmethods', 'my_user_contactmethods');
function my_user_contactmethods($user_contactmethods){
$user_contactmethods['twitter'] = 'Twitter Username';
$user_contactmethods['facebook'] = 'Facebook URL';
$user_contactmethods['google'] = 'Google Profile Link';
$user_contactmethods['pinterest'] = 'Printerest Username';
$user_contactmethods['linked'] = 'Linkedin Username';
return $user_contactmethods;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment