Tagged: Author Page
hi<
In the Edit User page I added a hyperlink tag(s).
It worked, there is a hyperlink on the author’s page:
http://microbrewr.com/author/tiffany-adamowski/
I wanted the link o on in a new page, so I added target=”_blank”
Every time I click “Update User” in the Edit User page, it just gets rid of the target=”_blank”
Please help.
Thanks.
Hey Nathan!
This is a normal security feature of WordPress. If you want to disable it, use this code in theme’s functions.php:
//disable WordPress sanitization to allow more than just $allowedtags from /wp-includes/kses.php
remove_filter('pre_user_description', 'wp_filter_kses');
//add sanitization for WordPress posts
add_filter( 'pre_user_description', 'wp_filter_post_kses');
Regards,
Andy