1
Magento 2: Sắp xếp thứ tự và giới hạn bộ sưu tập sản phẩm
Tôi cần sắp xếp bộ sưu tập sản phẩm theo thứ tự ID DESC và thêm giới hạn cho bộ sưu tập sản phẩm. Đây là mã của tôi: $objectManager = \Magento\Framework\App\ObjectManager::getInstance(); $productCollection = $objectManager->create('Magento\Catalog\Model\ResourceModel\Product\CollectionFactory'); $collection = $productCollection->create() ->addAttributeToSelect('*') ->load();