显示某一类别的子类别
我正在使用 Magento,并且尝试在无序列表中显示一个类别 (42) 中的所有子类别。我也只想显示那些处于活动状态的子类别。
我在谷歌上搜索了很多“解决方案”,但似乎没有一个对我有用。我想知道是否有人对此有明确的答案?
谢谢, 尼尔
I'm using Magento and I am trying to display all sub categories from one category (42) in an unordered list. I'd also only like to show those subcategories that are active.
I've googled lots of 'solutions', but none seem to work for me. I was wondering if anyone has a definitive answer to this?
Thanks,
Neil
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您应该使用静态块。
像这样的东西:
You should use static block.
Somwthing like this:
使用
Mage::getModel('catalog/category')->getCategories($parent, $recursionLevel, $sorted)
方法,它返回特定父类别的子类别树。 $parent 在本例中是类别 id,$recursionLevel 是选择子类别的多个级别,$sorted 仅指示是否对类别进行排序。方法调用只需要 $parent 参数。Use
Mage::getModel('catalog/category')->getCategories($parent, $recursionLevel, $sorted)
method, it returns the tree of the subcategories for a particular parent category. $parent in this case is category id, $recursionLevel is a number of levels for selection subcategories, $sorted just indicates whether sort categories or not. Only $parent argument is required for the method calling.