現在、選択したカテゴリのアイテムを次の方法でスライダーに表示しています。
$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));
ここでやりたいのは、ID で ASC 順に表示することです。
これを達成するための最良の方法は何ですか?