Magento 主页上的静态块

发布于 2024-10-06 09:41:56 字数 372 浏览 2 评论 0原文

我正在尝试使用布局 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

墨落成白 2024-10-13 09:41:56

在主题使用的任何布局文件中添加以下内容。

<cms_index_index>
  <reference name="content">
    <block type="cms/block" name="home-page-block">
      <action method="setBlockId"><block_id>home-page-block</block_id></action>
    </block>
  </reference>
</cms_index_index>

cms_index_index 特定于主页。

In any layout file used by your theme add the following.

<cms_index_index>
  <reference name="content">
    <block type="cms/block" name="home-page-block">
      <action method="setBlockId"><block_id>home-page-block</block_id></action>
    </block>
  </reference>
</cms_index_index>

cms_index_index is specific to the home page.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文