Magento 主页上的静态块
我正在尝试使用布局 XML 文件将静态块添加到 Magento 站点的主页。
我可以看到如何在引用内添加和删除块,但我很难了解如何为特定页面(即主页)添加它。
<block type="cms/block" name="home-page-block">
<action method="setBlockId"><block_id>home-page-block</block_id></action>
</block>
我如何将此代码包装在 page.xml
文件中以使其仅在主页上使用?
或者有更好的方法吗?主页应该是新模板吗?
I am trying to add a static block to the home page of a Magento site using the layout XML file.
I can see how to add and remove block inside a reference, but I am struggling to see how to add it for a specific page, i.e. the home page.
<block type="cms/block" name="home-page-block">
<action method="setBlockId"><block_id>home-page-block</block_id></action>
</block>
How would I wrap this code in the page.xml
file for it to be only used on the homepage?
Or is there a better way? Should the home page be a new template?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在主题使用的任何布局文件中添加以下内容。
cms_index_index
特定于主页。In any layout file used by your theme add the following.
cms_index_index
is specific to the home page.