Reputation: 62
I want to modify the title of search result page and insert the search word into the title to avoid duplicate title mistake in Google.
Like this: http://imgur.com/6dcmlrA
Please help me.
thanks
Upvotes: 0
Views: 1649
Reputation: 2731
Have a look at the following properties:
They contain the search parameters.
To set the title, you use $this->document->setTitle($title);
, where $title
is your string.
Upvotes: 1