Showing posts with label
Newsest Product in first magento.
Show all posts
Showing posts with label
Newsest Product in first magento.
Show all posts
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)
?>