更多在页面中添加静态块的方法,但最好的方法是什么?

时间:2011-06-19 20:58:23

标签: magento static block

我想知道将创建的静态块插入到我的页面的最佳方法是什么。 f.i. bokszakkenstore.nl左栏中的第二个块 我通过在catalog.xml中添加它来插入该块 但现在我也看到你可以通过编辑left-col.phtml或page.xml或page.phtml来添加它。

那么最好的方法是什么?为什么?

这是我在catalog.xml中使用我的静态块left_banner

的方式

                                  left_banner                           

提前致谢

1 个答案:

答案 0 :(得分:0)

最快捷的方式是:

<?php echo $this->getLayout()->createBlock('cms/block')->setBlockId('block_identifier')->toHtml(); ?> 

但是您也可以在layouts文件夹中将其创建为XML块并以通常的方式将其显示出来(我更喜欢使用自定义主题时):

<?php echo $this->getChildHtml('block_identifier') ?>