在Magento中获取子类别
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了在Magento中获取子类别相关的知识,希望对你有一定的参考价值。
One approach to get all child categories of a magento category.
<?php $category_model = Mage::getModel('catalog/category'); //get category model $_category = $category_model->load($categoryid); //$categoryid for which the child categories to be found $all_child_categories = $category_model->getResource()->getAllChildren($_category); //array consisting of all child categories id ?>
以上是关于在Magento中获取子类别的主要内容,如果未能解决你的问题,请参考以下文章
所有产品(类别和子类别产品)都计入 magento 中的类别列表页面