Viewing 1 replies (of 1 total)
  • Can you adding the following in functions.php file of your theme’s root folder please?

    
    add_filter( 'document_title_parts', function( $title )
    {
        if ( is_search() ) 
            /* translators: %s: search phrase */
            $title['title'] = sprintf( 
                __( '%s' ), get_search_query() 
            );
        return $title;
    } );
    

    Let me know if this helps.

Viewing 1 replies (of 1 total)
  • The topic ‘Need Help to Edit Search Result Page Title’ is closed to new replies.