Skip to content

Instantly share code, notes, and snippets.

@simonlk
Created June 1, 2014 12:24
Show Gist options
  • Save simonlk/164e25293343bc502dda to your computer and use it in GitHub Desktop.
Save simonlk/164e25293343bc502dda to your computer and use it in GitHub Desktop.
Add/Remove custom fields in WordPress profile
/* =====================================================
Custom profile field
===================================================== */
function modify_contact_methods($profile_fields) {
// Add new fields
$profile_fields['company_name'] = 'Company Name';
// Remove old fields
unset($profile_fields['aim']);
return $profile_fields;
}
add_filter('user_contactmethods', 'modify_contact_methods');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment