我想在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>
我该怎么做?
答案 0 :(得分:2)
<?php
echo $this->getLayout()->createBlock('core/template')->setTemplate('foldername/filename.phtml')->toHtml();
?>