Forums

[resolved] HTML in post title (2 posts)

  1. Piotr Sochalewski
    Member
    Posted 1 year ago #

    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?

  2. Piotr Sochalewski
    Member
    Posted 1 year ago #

    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;
      }

Topic Closed

This topic has been closed to new replies.

About this Topic