我创建了一个自定义下拉属性,其值为“yes”或“on”。现在我的问题是我们如何编写一个 MySQL 查询来检索类别中新添加的产品,这些产品通过使用 MySQL 数据库的自定义属性检查为“是”,我们必须在哪里放置该查询?在这里,我想在主页类别明智地显示这些新添加的产品。
问问题
657 次
1 回答
1
你想在 Magento 里面做吗?改为使用集合。
$collection = Mage::getModel('catalog/product')->getCollection();
$collection->addAttributeToSelect('*'); // Or only the attributes that you need
$collection->addAttributeToFilter('your_attribute', array('eq' => '1'));
foreach ($collection as $product) {
echo $product->getId();
}
于 2012-04-04T11:58:03.013 回答