Showing posts with label How to display latest product in first in Magento. Show all posts
Showing posts with label How to display latest product in first in Magento. Show all posts

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)


?>