Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
ネストされたサブカテゴリが多数ある場合、magento でカテゴリのすべてのサブカテゴリを取得するにはどうすればよいですか?
ありがとう
$subcats = Mage::getModel('catalog/category')->getCategories($your_category_id); foreach ($subcats as $sub) { echo $sub->getName(); }