我添加了一个标记为' custom_filter'的自定义下拉类别属性,它只有两个值,'是'并且没有'。如何在.phtml文件中获取它的值?
我尝试过像
这样的代码Mage::getModel('catalog/category')->load($store_id)->getAttribute('custom_filter');
或
$categories = Mage::getModel('catalog/category')->getCollection()->getAttributes('custom_filter');
我知道这些是不正确的,所以请给出一些提示。 THX!
答案 0 :(得分:2)
这应该这样做。
$category = Mage::getModel('catalog/category')->load($categoryId);
echo $category->getResource()->getAttribute($attributeCode)->getFrontend()->getValue($category);