Als je de volgende snippet in het functions.php bestand van je thema zet, voeg je contactinfo velden toe bij de gebruikersprofielen. Deze snippet haalt ook aim, yim en jabber velden weg van de gebruikersprofiel pagina.
//voeg Twitter, Facebook, Linkedin en Flickr toe in User Profile
function add_remove_contactmethods( $contactmethods ) {
$contactmethods['twitter'] = 'Twitter';
$contactmethods['facebook'] = 'Facebook';
$contactmethods['linkedin'] = 'Linked In';
$contactmethods['flickr'] = 'Flickr';
// this will remove existing contact fields
unset($contactmethods['aim']);
unset($contactmethods['yim']);
unset($contactmethods['jabber']);
return $contactmethods;
}
add_filter('user_contactmethods','add_remove_contactmethods',10,1);
source:WP-Snipp
Twitter deze pagina!
