本文介绍了Magento-列出产品类别的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
在Magento的每个产品详细信息页面上,我想列出属于哪个类别.
In Magento on each products detail page I would like to list which categories which belongs to.
我将如何实现这一目标?
How would I go about achieving this?
推荐答案
尝试一下:
$currentCatIds = $_product->getCategoryIds();
还有
$categoryCollection = Mage::getResourceModel('catalog/category_collection')
->addAttributeToSelect('name')
->addAttributeToSelect('url')
->addAttributeToFilter('entity_id', $currentCatIds)
->addIsActiveFilter();
干杯,京东
这篇关于Magento-列出产品类别的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!