Skip to content

Instantly share code, notes, and snippets.

@JuanRangel
Created August 10, 2016 20:39
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save JuanRangel/2aaa671d95edb49b4524aed35b67354d to your computer and use it in GitHub Desktop.
Save JuanRangel/2aaa671d95edb49b4524aed35b67354d to your computer and use it in GitHub Desktop.
Add social fields to user profile
add_filter( 'user_contactmethods', 'vsellis_contactmethods' );
function vsellis_contactmethods( $contactmethods ) {
$contactmethods = [
'twitter' => 'Twitter',
'instagram' => 'Instagram',
'pinterest' => 'Pinterest',
'linkedin' => 'Linkedin',
'facebook' => 'Facebook',
];
return $contactmethods;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment