saosangmo
saosangmo

Reputation: 62

Insert search word into title of search result page?

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

Answers (1)

Bakual
Bakual

Reputation: 2731

Have a look at the following properties:

  • $this->searchword
  • $this->origkeyword
  • $this->searchphrase
  • $this->searchareas

They contain the search parameters.

To set the title, you use $this->document->setTitle($title);, where $title is your string.

Upvotes: 1

Related Questions