Add this lines to your functions.php
Add or remove the fields you want using the example below:
1 2 3 4 5 6 7 8 9 10 11 |
function extra_contact_info($contactmethods) { unset($contactmethods['aim']); unset($contactmethods['yim']); unset($contactmethods['jabber']); return $contactmethods; } add_filter('user_contactmethods', 'extra_contact_info'); |
Get the fields in the Theme
You can use:
1 |
<a href="<?php the_author_meta('facebook', $current_author->ID); ?>"></a> |