我添加了一个新的CMS页面,并编辑了Layout XML以显示:
<reference name="head">
<block type="cms/block" name="myblock" template="myfolder/mytemplate.phtml"></block>
</reference>
所以我把文件“mytemplate.phtml”放在这个文件夹中:
/app/design/frontend/base/default/template/myfolder
我把这个测试脚本放在文件中:
<?php
echo '<script>alert("hello");</script>';
?>
但是,当我加载CMS页面时没有任何反应,所以这意味着'mytemplate.phtml'文件没有加载。
我该如何做到这一点?
答案 0 :(得分:1)
如果您只想显示模板文件,则应使用块类型core/template
。试试这个xml:
<reference name="head">
<block type="core/template" template="myfolder/mytemplate.phtml"/>
</reference>