我想在我的自定义模块中添加元信息,我确实在AdminPanel中添加了包含字段的选项卡和表单
元关键字
并将数据写入数据库,我想在前端产品页面中添加此元信息,我不明白它是如何在前端使用产品的,任何帮助将不胜感激谢谢..
答案 0 :(得分:2)
你可以在Block和控制器中添加它
阻止
在自定义栏中添加此功能
protected function _prepareLayout()
{
$head = $this->getLayout()->getBlock('head');
if ($head) {
$head->setTitle("Your title");
$head->setKeywords("Your meta keywords");
$head->setDescription("Your meta description");
}
return parent::_prepareLayout();
}
对于控制器,您可以添加
$this->getLayout()->getBlock('head')->setTitle('Manufacturer');
希望这一定会帮到你
答案 1 :(得分:0)
在您的控制器中尝试此操作(保存表单操作);
$this->getLayout()->getBlock('head')->setTitle($title)->setDescription($description)->setKeywords($keywords);