Why Search Results page is not showing the Search Result: (The User Query)

Hello! I was trying to make a search results page, but when I search for something, the header title doesn’t say “Your Search Result for ‘User Query’”. Also, only the first item is relevant to the search results and the rest of the items are not relevant.

Here is the video of my problem:

Thank you :slight_smile:

Hi,

To display the user query, you can use dynamic data

results for : {echo:search_query}

And in your function.php add

function search_query() {
return get_search_query();
}

4 Likes

Thanks, this helped a lot.

1 Like

Thanks this really helpful!

1 Like

Thank you and Sorry for the delay :sweat_smile: :slight_smile:

1 Like