Magento get products from a specific category

Next code is a sample to extract all products from a specific category:


$prodCat = Mage::getModel('catalog/category')->load($catId);
$prodCat = $prodCat->getProductCollection();
foreach( $prodCat->getAllIds() as $prodId)
{
$_product=Mage::getModel('catalog/product')->load($prodId);
print $_product->getName()."
";
}

Leave a Reply

Your email address will not be published. Required fields are marked *