Magento - 如何检索具有特定属性值的产品

时间:2013-10-08 09:09:31

标签: magento attributes magento-1.7

起初我刚接触magento ..

我只想显示带属性的产品值过滤

我想运行类似www.somesite.com/something.php的东西,我应该能够看到产品详细信息..

我已经找到了一些令我怀疑的代码,但我不知道如何将代码运行为www.somesite.com/something.php

建议我

1 个答案:

答案 0 :(得分:0)

您必须使用属性过滤器在您的集合中执行以下操作:

$collection->addAttributeToFilter('status',1); //only enabled product

$collection->addAttributeToFilter('created_at', array('date' => true, 'to' => $fromDate)); //product created

更新

例如

$collection = Mage::getResourceModel('catalog/product_collection');
$collection->addAttributeToFilter('status',1); //only enabled product
$collection->setOrder('created_at', 'desc');
$collection->addAttributeToSelect('*'); //add product attribute to be fetched
$collection->addStoreFilter();