在magento中获取类别详细信息查询

发布于 2024-10-15 00:20:13 字数 75 浏览 2 评论 0原文

我需要一个显示类别名称、类别 url 和类别名称的查询Magento 中自定义类别属性的值
任何猜测...

谢谢

I need a query which displays Category Name,Category url & value of the Custom catgory attribute in Magento
any Guess...

Thanks

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

汐鸠 2024-10-22 00:20:13
$category = Mage::getModel('catalog/category')->load($my_category_id);

echo $category->getName();
echo $category->getUrlKey();

像这样的东西吗?我不确定自定义类别属性是什么意思,但我也不知道类别值是什么。

$category = Mage::getModel('catalog/category')->load($my_category_id);

echo $category->getName();
echo $category->getUrlKey();

Something like this? I am not sure what you mean by custom category attribute and I don't know what a category value is though.

〗斷ホ乔殘χμё〖 2024-10-22 00:20:13
$categories = $_product->getCategoryIds();
foreach($categories as $k => $_category_id):
    $_category = Mage::getModel('catalog/category')->load($_category_id)
    echo $_category->getUrl();
    echo $_category->getName();
    echo $category->getUrlKey();
endforeach;
$categories = $_product->getCategoryIds();
foreach($categories as $k => $_category_id):
    $_category = Mage::getModel('catalog/category')->load($_category_id)
    echo $_category->getUrl();
    echo $_category->getName();
    echo $category->getUrlKey();
endforeach;
白况 2024-10-22 00:20:13

假设您的自定义属性是“custom_attribute”,然后执行以下操作:

$categories = Mage::getModel('catalog/category')
->getCollection()
->addAttributeToFilter('custom_attribute', 'value_here');
foreach ($categories as $category){
    echo $category->getUrl();
    echo $category->getName();
}

希望这会有所帮助。

lets say your custom attribute is "custom_attribute", then do this:

$categories = Mage::getModel('catalog/category')
->getCollection()
->addAttributeToFilter('custom_attribute', 'value_here');
foreach ($categories as $category){
    echo $category->getUrl();
    echo $category->getName();
}

Hope this helps.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文