如何更改Magento模块的页面标题?

12 magento

我已成功安装magento,但网站标题仍然是magento,我尝试多次但没有更改该标题?并且没有改变小部件下的东西?那么程序是什么?

Ant*_*n S 27

你可以通过布局文件来做到这一点:

<reference name="head">
    <action method="setTitle" translate="title"><title>Your Title</title></action>
</reference>
Run Code Online (Sandbox Code Playgroud)

或通过代码访问head block元素和调用setTitle('your title') 方法

$this->getLayout()->getBlock('head')->setTitle('your title'); 
Run Code Online (Sandbox Code Playgroud)

grep以获取更多参考:

grep '>setTitle(' app/code/ -rsn
Run Code Online (Sandbox Code Playgroud)