echo $this->getLayout()->createBlock('core/template') ->setTemplate('postcode/postcode.phtml')->toHtml()
我想在静态块中调用此代码。怎么做?
答案 0 :(得分:4)
如果您想从CMS页面或CMS Block调用phtml文件,请将以下代码粘贴到内容区域。
{{block type="core/template" template="postcode/postcode.phtml"}}
答案 1 :(得分:0)
只需替换块类型,块ID和模板路径即可满足您的具体要求。
类似的东西:
{{block type="core/template" block_id="demo.block" template="your/template/path.phtml"}}
答案 2 :(得分:0)
在后端添加新的静态块,例如new-static-block.
打开静态块并输入这样的代码,为其分配模板。
{{block type="core/template" template="newtemplatefile.phtml"}}
通过代码或xml(首选方式)
调用静态块