Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save jrodriguez-ifuelinteractive/6819afa9e1e0633dbfc3 to your computer and use it in GitHub Desktop.
Save jrodriguez-ifuelinteractive/6819afa9e1e0633dbfc3 to your computer and use it in GitHub Desktop.
Category
<?php
$category = Mage::getModel('catalog/category');
$categories = $category->getCategories(62, 1, true);
foreach ($categories as $_category) {
echo $_category->getName() ;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment