How to set meta tags using php in Magento module?

This does not work in my file .phtml.

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

I believe that you will want to put this code in your controller, and not in files of your kind.

+7
source

All Articles