Advertisement
Guest User

Untitled

a guest
Aug 14th, 2017
70
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.29 KB | None | 0 0
  1. add_filter('user_contactmethods', 'modify_contact_methods');
  2. function modify_contact_methods($profile_fields) {
  3.  
  4. // Remove old fields
  5. unset($profile_fields['behance']);
  6. unset($profile_fields['blogger']);
  7. unset($profile_fields['delicious']);
  8.  
  9. return $profile_fields;
  10. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement