我试图使用php从模板中的特定类别调用名称,图像等产品列表。
这似乎很容易做到,但我已经在这方面工作了好几个小时并没有取得任何进展。有谁知道怎么做?
答案 0 :(得分:2)
在您的magento phtml文件中添加
<?php
$category_id = xx;
echo $this->getLayout()
->createBlock('catalog/product_list')
->setTemplate('catalog/product/list.phtml')
->setCategoryId($category_id)
->toHtml();
?>