Friday 25 December 2015

How to display latest added products first in Magento

If you want to display latest added product first. Then, use below code:  


<?php 


 $_productCollection=$category->getProductCollection()
                         ->addAttributeToSort('entity_id', 'desc');

                     

 // Use this code for sort product as "Ascending" and "Descending" (Red Color Code)


?>




10 comments: