/ Published in: PHP
Return a list of all store Categories
Expand |
Embed | Plain Text
Copy this code and paste it in your HTML
$category = Mage::getModel('catalog/category'); $tree = $category->getTreeModel(); $tree->load(); $ids = $tree->getCollection()->getAllIds(); if ($ids){ foreach ($ids as $id){ $cat = Mage::getModel('catalog/category'); $cat->load($id); }