Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

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 cdils/df9ced89306ca27580f6 to your computer and use it in GitHub Desktop.
Save cdils/df9ced89306ca27580f6 to your computer and use it in GitHub Desktop.
Add custom contact fields in the WordPress User Edit screen.
// Customize the contact information fields available to users
add_filter( 'user_contactmethods', 'change_contact_info', 10, 1);
function change_contact_info( $contactmethods ) {
$contactmethods['website_title'] = 'Website Title';
$contactmethods['twitter'] = 'Twitter';
$contactmethods['facebook'] = 'Facebook';
$contactmethods['linkedin'] = 'Linked In';
return $contactmethods;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment