Advertisement
tcelestino

Add user fields WordPress

Sep 2nd, 2012
48
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.27 KB | None | 0 0
  1. <?php function my_user_contactmethods($user_contactmethods){
  2.   $user_contactmethods['twitter'] = 'Twitter Username';
  3.   $user_contactmethods['facebook'] = 'Facebook Username';
  4.   return $user_contactmethods;
  5. }
  6. add_filter('user_contactmethods', 'my_user_contactmethods');
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement