我试图显示一个产品列表,我想过滤,所以我的集合中的 2 个第一个产品会显示并控制将如何加载许多产品。该产品由 our_reviews 过滤并按 reviewdate 排序。我希望结果的第一个和第二个不显示并开始显示产品 3,依此类推。
这就是我到目前为止所拥有的
$_productCollection = Mage::getResourceModel('catalog/product_collection')
->addAttributeToSelect('*')
->addAttributeToFilter('our_reviews', array('neq' => ''))
->setOrder('reviewdate','DESC')
->setPage(1,10)
->load();
?>