I am trying to load a list of items from a Magento model. What I want to do is get the items in order by their created date so that I have the newest first.
Anyone know how I can do that?
Here is what I have so far:
$model = Mage::getModel('testimonials/testimonials')
->getCollection();
Thanks