Forums

Change PageTitle for Search Results Template (2 posts)

  1. mtanish
    Member
    Posted 2 years ago #

    How do i just change the HTML Page Heading title something
    different only for my Search Results page.
    I have included a theme included.

    My header.php has the following

    <title><?php wp_title('«', true, 'right') ?> <?php bloginfo('name') ?></title>

    So the page title is now
    ABC << Search Results << BLOG NAME

    I want it to be displayed like
    ABC << MY_NEW_TITLE << BLOG NAME

    How do i achieve that?
    Thanks in advance

  2. mtanish
    Member
    Posted 2 years ago #

    Got it..it was simple enough.
    <title> <?php if ( is_search() ) { echo the_search_query(); echo " « New Title « "; bloginfo(’name’); } ?> </title>

    and keep the previous one in the else condition.

Topic Closed

This topic has been closed to new replies.

About this Topic