gpt4 book ai didi

magento - 显示父级别的事件和非事件类别 magento

转载 作者:行者123 更新时间:2023-12-02 11:23:38 26 4
gpt4 key购买 nike

我在 magento 中有一个网站。我想显示所有类别,无论其是否处于事件状态。

我已经尝试过,但它没有显示非事件类别。

任何人都可以提出解决这个问题的建议吗?

谢谢。

最佳答案

试试这个...这肯定会对你有帮助...

$categories = Mage::getModel('catalog/category')->getCollection()
->addAttributeToSelect('*')//or you can just add some attributes
->addAttributeToFilter('level', 2)//2 is actually the first level;

如果您想要所有事件类别,请添加此过滤器选项。

$categories = Mage::getModel('catalog/category')->getCollection()
->addAttributeToSelect('*')//or you can just add some attributes
->addAttributeToFilter('level', 2)//2 is actually the first level
->addAttributeToFilter('is_active', 1);//if you want only active categories

关于magento - 显示父级别的事件和非事件类别 magento,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25015341/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com