WordPressin käyttäjäprofiileissa on oletusarvoisesti seuraavat kentät Yhteystiedot: Sähköposti, Verkkosivusto, AIM, Yahoo IM, Jabber / Google Talk. Voit poistaa ne ja lisätä uusia haluamallasi tavalla, kuten tässä teema.php-tiedostosi esimerkkikoodissa teemalla:
function new_contactmethods( $contactmethods ) ( $contactmethods('twitter') = 'Twitter'; // Add Twitter $contactmethods('facebook') = 'Facebook'; // Add Facebook unset($contactmethods('yim')); // Remove YIM unset($contactmethods('aim')); // Remove AIM unset($contactmethods('jabber')); // Remove Jabber return $contactmethods; )
Voit näyttää sen julkisesti seuraavasti:
$user_id = 1; $key = 'twitter'; $single = true; $user_twitter = get_user_meta( $user_id, $key, $single); echo $user_twitter;