I am currently displaying items from a selected category in a slider in the following way:
$cat_id = $homepage["homeproductstype_{$homepage['amount']}_3"];
$_products = Mage::getResourceModel('catalog/product_collection')
->addAttributeToSelect(array('name', 'price', 'small_image', 'short_description'), 'inner')
->addAttributeToSelect('special_price')
->addAttributeToSelect('status')
->addCategoryFilter(Mage::getModel('catalog/category')->load($cat_id));
What I would like to do here though, is to have them displayed by ID in ASC order.
What is the best way to have this achieved?