检索产品并对Magento进行排序


Retrieve products and sort Magento

我的代码有问题,目前正在加载产品,但不接受订单过滤器。这是我的东西。如果有任何帮助,我将不胜感激。

 $_productCollection->clear()
               ->setOrder('entity_id', 'DESC')
               ->setPage($_GET['pageNo'],12)
               ->load()
               ;

你好,检查下面的代码

$collection=Mage::getModel('catalog/product')->getCollection();

$collection->setOrder('entity_id','DESC');

$products=$collection->load();