我希望按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')
对我无效。
非常感谢任何帮助。
由于