Ich möchte die Seite Profil ändern und einiges rausschmeißen.
Mit folgendem Code möchte ich alle Netzwerke entfernen. Leider funktioniert dies nur für AIM, Jabber; YIM.
Den Rest bekomme ich nicht weg.
Ich habe bisher auch noch nichts gefunden wo diese Profilfelder spezifiziert sind.
Jeder Hinweis ist willkommen.
PHP
// Benutzerprofile von unnoetigen Netzwerken entfernen
if(!function_exists('hide_profile_fields')){
function hide_profile_fields( $contactmethods ) {
// this will remove existing contact fields
unset($contactmethods['aim']); //AIM
unset($contactmethods['jabber']); //Jabber / Google Talk
unset($contactmethods['yim']); // Yahoo IM
unset($contactmethods['twitter']); //Twitter@username ?????
unset($contactmethods['facebook']);
unset($contactmethods['linkedin']);
unset($contactmethods['flickr']);
unset($contactmethods['google_plus']); //Google+ ?????
unset($contactmethods['mysite']); //Webseite ????
unset($contactmethods['behance']);
return $contactmethods;
}}
add_filter('user_contactmethods','hide_profile_fields',10,1);
Alles anzeigen