Schlagwort-Archive: Profil

Links im Benutzer Profil von WP erlauben

Um Links im Benutzerprofil von WordPress 3.1 zu erlauben, kann man in der
wp-includes/default-filters.php
die Zeile
remove_filter(‚pre_user_description‘, ‚wp_filter_kses‘);
einfügen.
Gefunden auf allow html in profile.
Für WP 3.1 ist fogender Tipp obsolet, da die registration.php nicht mehr verwendet wird:

To do this, open up /wp-includes/registration.php in a text editor. Then, find the following code:
$description = apply_filters(‚pre_user_description‘, $description);
Comment it out by putting two slashes in front of it, making it:
//$description = apply_filters(‚pre_user_description‘, $description);

(358)