根据属性过滤magento中的指定类别

时间:2014-05-09 12:27:31

标签: magento filter attributes categories

我有一个名为“特殊交易”的类别,我需要做的是:当用户打开此类别时,sql将返回具有“特殊”属性的所有类别的所有产品。

我从magento开始,所以我的知识更加前瞻,所以非常感谢你能帮助我。

1 个答案:

答案 0 :(得分:0)

您可以按照以下方式进行操作,

$collection = Mage::getModel('catalog/product')
->getCollection()
->addAttributeToFilter('attribute_code', 'attribute_value');

您可以找到更多信息herehere