我需要在属性的帮助下使用类别列表来创建所有页面中可见的自定义菜单。
我可以在类别页面上显示该属性,但我需要能够回显所有页面上的列表。
现在我想要具有相同属性的产品的类别。
我有一个父类别ID
和属性详细信息:
属性值:
根据属性ID需要类别列表。将列出哪个类别产品具有属性0-3个月的手段。
答案 0 :(得分:0)
<?php
$product = Mage::getModel('catalog/product');
$attributes = Mage::getResourceModel('eav/entity_attribute_collection')
->setEntityTypeFilter($product->getResource()->getTypeId())
->addFieldToFilter('attribute_code', 'age');
$attribute = $attributes->getFirstItem()->setEntity($product->getResource());
$atblist = $attribute->getSource()->getAllOptions(false);
?>
这是为了帮助......