Skip to content

Instantly share code, notes, and snippets.

@debonx
Last active October 21, 2018 16:52
Show Gist options
  • Save debonx/7d05acfbcd90e3c3b589f7077cb5071e to your computer and use it in GitHub Desktop.
Save debonx/7d05acfbcd90e3c3b589f7077cb5071e to your computer and use it in GitHub Desktop.
Add contact methods to Wordpress User dashboard, like social media or external urls. Add this code to your theme's functions.php.
add_filter( 'user_contactmethods','huraji_contactmethods', 20, 1 );
function huraji_contactmethods( $contact_methods ) {
$contact_methods['linkedin'] = __( 'LinkedIn URL', 'text_domain' );
$contact_methods['github'] = __( 'Github URL', 'text_domain' );
$contact_methods['youtube'] = __( 'YouTube URL', 'text_domain' );
return $contact_methods;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment