0
我嘗試過不同的論壇,並找到以下代碼對我有幫助,但它不會爲我返回任何內容。Magento:來自某個特定類別的產品收集及其子類別
$limit = ($limit == 0) ? 50 : $limit;
$category = Mage::getModel('catalog/category')->load($cat_id);
$category->setIsAnchor(1);
$products = Mage::getResourceModel('catalog/product_collection')
->addAttributeToSelect('*')
->addAttributeToFilter("status", array("eq" => 1))
->addAttributeToFilter("visibility", array("eq" => 1))
->setPageSize($limit)
->addCategoryFilter($category)
->load();
$products
始終爲零長度。