我想在我的自定义模块中添加元信息,我确实在包含字段的 AdminPanel 中添加了选项卡和表单
元标题,
元描述
元关键字
并将数据写入数据库,我想在前端产品页面中添加这个元信息,我不明白它是如何在前端产品中使用的,任何帮助将不胜感激谢谢..
您可以将其添加到 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');
希望这对你有帮助
在您的控制器中尝试此操作(保存表单操作);
$this->getLayout()->getBlock('head')->setTitle($title)->setDescription($description)->setKeywords($keywords);