我有一个联系表单模板 (modal.phtml),我想将它添加到我网站上的所有页面,但我需要能够精确定位它,所以我想使用 插入到相关页面模板中$this->getChildHtml('contacts-modal')
,而不是插入通过布局 xml。因此,在 page/2columns-right.phtml 中,我想使用该调用来插入存储在 contacts/modal.phtml 中的模板。我在下面的布局 xml 会自动插入这个模板 - 我该如何纠正这个?感谢您的任何指示,如果这是非常基本的事情,我们深表歉意!
<reference name="content">
<block type="core/template" name="contacts-modal" as="contacts-modal" template="contacts/modal.phtml"/>
</reference>