我想让我的CMS页面之一访问frontend / default / [theme] / [plugin]目录中的模板。
我当前访问此模板的代码是
{{block type="core/template" template="path/to/template.phtml"}}
这会检查前端/ 基础 / default / template /...。是否有变量类型可以检查默认文件夹中的模板?
答案 0 :(得分:0)
我想每次添加新块时,都必须指定name
属性。
只需将其添加到您的代码中即可。
{{block type="core/template" template="path/to/template.phtml" name="mycustomblock"}}
这将从当前主题中添加模板。
提醒:如果这是一个自定义块(不是核心/模板),则可能需要whitelist it。
这应该有效。 ;)