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&remove field from user profiles - sorce:http://davidwalsh.name/add-profile-fields | |
| function modify_contact_methods($profile_fields) { | |
| // Add new fields | |
| $profile_fields['company'] = 'Company'; | |
| // Remove old fields | |
| //unset($profile_fields['aim']); | |
| return $profile_fields; |
NewerOlder