Tüm Ürünleri Programlı olarak alın
Kodumuz Aşağıdadır
$collection = Mage::getResourceModel('catalog/product_collection');
foreach($collection as $product) {
echo $product->getId();
}
Kategorileri almak için
$categoryCollection = $product->getCategoryCollection();
Kategori İd’yi isme göre alın
$category = Mage::getResourceModel('catalog/category_collection')
->addFieldToFilter('name', 'the category name you want')
->getFirstItem() // get the parent category
->getChildrenCategories()
->addFieldToFilter('name', 'the child category name you want')
->getFirstItem(); // get the child category
$categoryId = $category->getId(); // the category ID you need