Last active
October 21, 2018 16:52
-
-
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.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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