如何在Magento中按降序排序按category_id对产品集合进行排序

时间:2014-08-26 08:20:03

标签: magento sorting categories

我希望按category_id按降序排序产品集合。但它没有用。这是我正在使用的代码。

$_productCollection = $product->getCollection()->addAttributeToSelect('*')
                        ->addAttributeToFilter('visibility', 4) // Only catalog, search visiblity
                        ->addAttributeToFilter('status', array('eq' => Mage_Catalog_Model_Product_Status::STATUS_ENABLED))
                        ->addAttributeToSort('category_id', 'DESC')
                        ->setCurPage(1)
                        ->setPageSize(12);

问题是addAttributeToSort('category_id', 'DESC')对我无效。

非常感谢任何帮助。

由于

0 个答案:

没有答案