Per impostazione predefinita WordPress non include Twitter e Facebook tra i campi del profilo utente relativi ai contatti. Possiamo ovviare a questa situazione con molta facilità.
Aggiungete il seguente codice al file functions.php
del vostro tema:
function new_contactmethods( $contactmethods ) {
$contactmethods['twitter'] = 'Twitter'; // Aggiunge Twitter
$contactmethods['facebook'] = 'Facebook'; // Aggiunge Facebook
unset($contactmethods['yim']); // Rimuove YIM
unset($contactmethods['aim']); // Rimuove AIM
unset($contactmethods['jabber']); // Rimuove Jabber
return $contactmethods;
}
add_filter('user_contactmethods','new_contactmethods',10,1);
Qualora non vogliate rimuovere YIM, AIM e Jabber è sufficiente che non inseriate le relative righe di codice nella funzione.