如何在magento中返回category属性的下拉值

时间:2014-10-13 05:07:57

标签: php magento

我添加了一个标记为' custom_filter'的自定义下拉类别属性,它只有两个值,'是'并且没有'。如何在.phtml文件中获取它的值?

我尝试过像

这样的代码
Mage::getModel('catalog/category')->load($store_id)->getAttribute('custom_filter');

$categories = Mage::getModel('catalog/category')->getCollection()->getAttributes('custom_filter'); 

我知道这些是不正确的,所以请给出一些提示。 THX!

1 个答案:

答案 0 :(得分:2)

这应该这样做。

$category = Mage::getModel('catalog/category')->load($categoryId);
echo $category->getResource()->getAttribute($attributeCode)->getFrontend()->getValue($category);