标签: magento filter attributes categories
我有一个名为“特殊交易”的类别,我需要做的是:当用户打开此类别时,sql将返回具有“特殊”属性的所有类别的所有产品。
我从magento开始,所以我的知识更加前瞻,所以非常感谢你能帮助我。
答案 0 :(得分:0)
您可以按照以下方式进行操作,
$collection = Mage::getModel('catalog/product') ->getCollection() ->addAttributeToFilter('attribute_code', 'attribute_value');
您可以找到更多信息here和here