如何在Magento博客的侧边栏中添加块?

时间:2016-10-13 10:13:32

标签: magento

任何人都可以帮助我解决这个问题

我在Magento有一个博客,其中有一个显示管理员添加的所有类别的块。说我有类似的东西 -

**Blog Categories**
________________________

Category 1
Category 2
Category 3

现在,我想在它下面添加另一个块,它会从特定类别中提取帖子。像这样的东西 -

Category 1
________________________

Post 1
Post 2
Post 3

任何人都可以指导我,我怎么能这样做? 感谢

1 个答案:

答案 0 :(得分:0)

假设您有帖子的模板,可以将它们插入分层导航下方。在布局目录中创建local.xml。

<catalog_category_layered>
  <reference name="left_first">
    <block type="core/template" name="mine" template="custom/post.phtml"/>
  </reference>
</catalog_category_layered>

现在您的&#39 e将会在分层导航下方看到。