在自定义模块中添加元标题,元关键字和元描述

时间:2015-10-21 12:41:26

标签: magento

我是magento的新人。我只想知道如何在自定义模块中添加元标题,元关键字和元描述。

1 个答案:

答案 0 :(得分:2)

请将此代码插入自定义模块layout.xml文件中。

<reference name = "head">
    <action method = "setTitle"><title>Accessory</title></action>
    <action method = "setKeywords"><title>module, keywords</title></action>
    <action method = "setDescription"><title>Module Description</title></action>
</reference>

请从下面提到的位置打开您的模块块文件,并设置元标题/关键字/描述

app / code / local / namespace / yourmodule / block / yourmodule.php

public function _prepareLayout() {        
    $head = $this->getLayout()->getBlock('head');
    $head->setTitle("Your Title");
    $head->setKeywords("your, keywords, anything");
    $head->setDescription("Your Description");
    return parent::_prepareLayout();
}