Advertisement
all2aller

Add meta post fields

Jul 4th, 2014
493
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.53 KB | None | 0 0
  1.  
  2. function wpsites_add_remove_user_contact_fields( $contactmethods ) {
  3.  
  4. $contactmethods['twitter'] = 'Twitter';
  5. $contactmethods['facebook'] = 'Facebook';
  6. $contactmethods['Youtube'] = 'YouTube';
  7. $contactmethods['linkedin'] = 'LinkedIn';
  8. $contactmethods['skype'] = 'Skype';
  9. $contactmethods['googleplus'] = 'Google Plus';
  10.  
  11. unset($contactmethods['aim']);
  12. unset($contactmethods['yim']);
  13. unset($contactmethods['jabber']);
  14.  
  15. return $contactmethods;
  16. }
  17.  
  18. add_filter('user_contactmethods','wpsites_add_remove_user_contact_fields',10,1);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement