将子块添加到register.phtml

时间:2014-12-05 06:07:50

标签: php magento

我想在register.phtml中包含一些视图文件,如下所示:

Register.phml

<div class="account-create">
    <div class="page-title">
        <h1><?php echo $this->__('Create an Account') ?></h1>
    </div>
.
.
// include another view file here
.
.
</div>

我该怎么做?

1 个答案:

答案 0 :(得分:2)

<?php          
echo $this->getLayout()->createBlock('core/template')->setTemplate('foldername/filename.phtml')->toHtml(); 
?>