我试图将自定义的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');
答案 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>