0

如何在 magento 1.6.2.0 中显示畅销书动态和特定类别?

4

1 回答 1

1

要显示畅销书,您可以从资源模型报告中加载产品集合,如下所示

$products = Mage::getResourceModel('reports/product_collection')
            ->addOrderedQty()
            ->addAttributeToSelect(array('name', 'price', 'small_image', 'short_description', 'description')) //edit to suit tastes
            ->setStoreId($storeId)
            ->addStoreFilter($storeId)
            ->setOrder('ordered_qty', 'desc'); //best sellers on top

并加载它们的类别明智,你可以得到当前的类别或通过硬编码。只需要过滤该类别中的产品。

于 2012-04-04T19:32:13.167 回答