I have an issue with my new post title, because I wanna use <small> in it... It works but <small></small> is added to title showed in browser tab what sucks.
http://i37.tinypic.com/2kojs0.jpg
How to rid it?
I have an issue with my new post title, because I wanna use <small> in it... It works but <small></small> is added to title showed in browser tab what sucks.
http://i37.tinypic.com/2kojs0.jpg
How to rid it?
Solved. This code should be added in functions.php.
add_filter( 'wp_title', 'custom_title', 1 );
function custom_title( $title = '')
{
$title = strip_tags($title);
return $title;
}This topic has been closed to new replies.