Last active
July 16, 2018 02:44
-
-
Save nandomoreirame/b6404abd922249083b5352b8909298af to your computer and use it in GitHub Desktop.
WP - Add extra contact methods to user profiles
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
| <?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