tzvij

user profile social media input

Jun 17th, 2014
7,325
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.44 KB | None | 0 0
  1. function add_to_author_profile( $contactmethods ) {
  2.    
  3.     $contactmethods['rss_url'] = 'RSS URL';
  4.     $contactmethods['google_profile'] = 'Google Profile URL';
  5.     $contactmethods['twitter_profile'] = 'Twitter Profile URL';
  6.     $contactmethods['facebook_profile'] = 'Facebook Profile URL';
  7.     $contactmethods['linkedin_profile'] = 'Linkedin Profile URL';
  8.    
  9.     return $contactmethods;
  10. }
  11. add_filter( 'user_contactmethods', 'add_to_author_profile', 10, 1);
Advertisement
Add Comment
Please, Sign In to add comment