我目前有类别中的产品和不属于任何类别的产品。这段代码将为我提供 Magento 中所有最近添加的产品:
$_productCollection = Mage::getResourceModel('catalog/product_collection')
->addAttributeToSelect('*')
->addAttributeToFilter($preorderAttribute, array(
'eq' => Mage::getResourceModel('catalog/product')
->getAttribute($preorderAttribute)
->getSource()
->getOptionId($preorderValue)
))
->setVisibility(array(2,3,4))
->setOrder('created_at', 'desc')
->setPage(1, 12);
但它也提供不属于任何类别的产品。我只想要属于一个或多个类别的产品,而不想要不属于任何类别的产品。
我怎样才能用上面的代码做到这一点?