desbest
desbest

Reputation: 4896

How do I set meta tags using php in a Magento module?

This doesn't work in my .phtml file.

$head = $this->getLayout()->getBlock('head');
$head->setTitle("title blah");
$head->setDescription("description goes here");
$head->setKeywords("apples bananas coconuts");

Upvotes: 5

Views: 1440

Answers (1)

Josh Pennington
Josh Pennington

Reputation: 6408

I believe you are going to want to put that code into your controller, not your view files.

Upvotes: 7

Related Questions