Skip to content

Instantly share code, notes, and snippets.

@nandomoreirame
Last active July 16, 2018 02:44
Show Gist options
  • Select an option

  • Save nandomoreirame/b6404abd922249083b5352b8909298af to your computer and use it in GitHub Desktop.

Select an option

Save nandomoreirame/b6404abd922249083b5352b8909298af to your computer and use it in GitHub Desktop.
WP - Add extra contact methods to user profiles
<?php
function themeUserContactmethods($user_contactmethods){
$user_contactmethods['twitter'] = 'Twitter Username';
$user_contactmethods['facebook'] = 'Facebook Username';
return $user_contactmethods;
}
add_filter('user_contactmethods', 'themeUserContactmethods');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment