Magento:在Magento模板中插入静态块
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Magento:在Magento模板中插入静态块相关的知识,希望对你有一定的参考价值。
/* There are three ways to insert static blocks into magento templates */ /* 1.Inserting into example-template.phtml */ <?php echo $this->getLayout()->createBlock('cms/block')->setBlockId('MyCustomCMSPage')->toHtml() ; ?> /* 2. Inserting into CMS */ {{block type="cms/block" block_id="MyCustomCMSPage" template="cms/example-template.phtml"}} /* 3. Inserting into layout.xml */ <layout> <example> <reference name="content"> <block type="cms/block" name="cms_store_check"> <action method="setBlockId"><block_id>MyCustomCMSPage</block_id></action> </block> </reference> </example> </layout>
以上是关于Magento:在Magento模板中插入静态块的主要内容,如果未能解决你的问题,请参考以下文章