Magento 1.9.0.1 - 向标题添加自定义phtml

时间:2014-10-01 08:48:00

标签: magento

我试图将自定义的phtml文件输出到我的Magento网站的标题中。以下是我所做的更改: 这有什么理由不适合我吗?什么都没有输出

那个local.xml

<reference name="head">
    <block type="core/text" name="wc-how-to" template="wc-how-to.phtml"/>   
    <!-- <block type="core/text" name="wc-how-to" template="wc-how-to.phtml" output="toHtml"/> -->

</reference>

WC-如何-to.phtml

<div class="wc-how-to">
This is some test text
</div>

header.phtml

 echo $this->getChildHtml('wc-how-to');

1 个答案:

答案 0 :(得分:2)

请检查参考名称。它应该是标题而不是标题

<reference name="header">
    <block type="core/text" name="wc-how-to" template="wc-how-to.phtml"/>   
    <!-- <block type="core/text" name="wc-how-to" template="wc-how-to.phtml" output="toHtml"/> -->

</reference>