我创建了一个自定义下拉属性,其值为'yes'或'on'。现在我的问题是我们如何编写MySQL查询来检索类别中新添加的产品,通过使用MySQL数据库的自定义属性和我们必须放置该查询的位置来检查“是”?在这里,我想在主页类别中显示这些新添加的产品。
答案 0 :(得分: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();
}