Reputation: 4896
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
Reputation: 6408
I believe you are going to want to put that code into your controller, not your view files.
Upvotes: 7