Display recently added products first in magento
Kindly Open app/code/core/Mage/Catalog/Block/Product/List/Toolbar.php and Find the below code at around line 232
if ($this->getCurrentOrder()) {
$this->_collection->setOrder($this->getCurrentOrder(), $this->getCurrentDirection());
}
Now Replace the below code and Enjoy chandresh rana's Coding
if ($this->getCurrentOrder()) {
if(($this->getCurrentOrder())=='position'){
$this->_collection->setOrder('entity_id','desc');
}
else {
$this->_collection->setOrder($this->getCurrentOrder(),$this->getCurrentDirection());
}
}