Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在尝试使用 php 从模板中的特定类别中调用具有名称、图像等的产品列表。
看起来这应该很容易做到,但我已经为此工作了几个小时,但没有取得任何进展。有谁知道如何做到这一点?
在您的 magento phtml 文件中添加
<?php $category_id = xx; echo $this->getLayout() ->createBlock('catalog/product_list') ->setTemplate('catalog/product/list.phtml') ->setCategoryId($category_id) ->toHtml(); ?>