/ Published in: PHP
Expand |
Embed | Plain Text
add_filter('user_contactmethods', 'jorbin_user_contactmethods'); /** * Removes AIM, YAHOO, and Jabber boxes from profile page and adds Twitter in it's place * */ function jorbin_user_contactmethods($user_contactmethods){ $new_user_contactmethods['twitter'] = __('Twitter'); return $new_user_contactmethods; }
You need to login to post a comment.
