我有一个名为 Home 的 CMS 页面,在 Design->Layout Update Xml 中有以下代码
<reference name="content">
<block type="core/template" template="homepage/home.phtml">
<reference name="featured">
<block type="catalog/product_list" name="featured" template="catalog/product/list.phtml">
<action method="setCategoryId"><category_id>2</category_id></action>
<action method="setColumnCount"><count>5</count></action>
</block>
</reference>
</block>
</reference>
这在 homepage/home.phtml 中
<div class="container home">
<div class="promo">
// Promo Here
</div>
<?php echo $this->getChildHtml('featured'); ?>
</div>
我的主要目标是尝试将特色块插入到 homepage/home.phtml 模板中,但是上面的 CMS 页面中的当前布局 xml 没有显示。
非常感谢所有帮助。