Magento get a list of products that are not related to any category
I was able to make an ordered list of categories with child products, now i need to add a list of products that 开发者_开发问答are not related to any category
This should give you what you want:
$collection = Mage::getModel('catalog/product')->getCollection()
->addAttributeToFilter('category_ids','');
精彩评论