我想知道将创建的静态块插入到我的页面的最佳方法是什么。 f.i. bokszakkenstore.nl左栏中的第二个块 我通过在catalog.xml中添加它来插入该块 但现在我也看到你可以通过编辑left-col.phtml或page.xml或page.phtml来添加它。
那么最好的方法是什么?为什么?
这是我在catalog.xml中使用我的静态块left_banner
的方式left_banner
提前致谢
答案 0 :(得分:0)
最快捷的方式是:
<?php echo $this->getLayout()->createBlock('cms/block')->setBlockId('block_identifier')->toHtml(); ?>
但是您也可以在layouts文件夹中将其创建为XML块并以通常的方式将其显示出来(我更喜欢使用自定义主题时):
<?php echo $this->getChildHtml('block_identifier') ?>