By default the sort order for products in Magento is from old to new.
That is sometimes not wanted, especially if you are working with a “Latest Products” category.
To change the sorting from new to old you have to edit the file Toolbar.php in App/Code/Core/Mage/Catalog/Block/Product/List/.
Search for
protected $_direction = 'asc';
and replace it with
protected $_direction = 'desc';
Please back up your files before replacing the existing one (you are working on the core here) and note that this is a system-wide change.
There is no related post.

