通过local.xml在页脚中调用自定义phtml

时间:2016-12-29 09:35:03

标签: xml magento

我在local.xml中的代码

<?xml version="1.0"?>
<layout version="0.1.0">
        <reference name="footer">
            <block type="core/template" name="site_access" as="site_access" template="folder_name/popup.phtml"/>
        </reference>        
</layout>

=&GT; footer.phtml

<?php echo $this->getChildHtml(); ?>

但它没有显示任何内容, 请帮帮我。

1 个答案:

答案 0 :(得分:3)

将代码放入local.xml()(app / design / frontend / {your theme} /default/layout/local.xml)

<?xml version="1.0"?>
<layout version="0.1.0">
<default>
<reference name="footer">
<block type="core/template" name="mylogic" template="mylogic/mylogic.phtml"/>
</reference>
</default>
</layout>

将此内容写入footer.html

<?php echo $this->getChildHtml('mylogic') ?>