ฉันต้องการเรียงลำดับการรวบรวมผลิตภัณฑ์ตามคำสั่ง ID DESC และเพิ่มขีด จำกัด ในการรวบรวมผลิตภัณฑ์ นี่คือรหัสของฉัน:
$objectManager = \Magento\Framework\App\ObjectManager::getInstance();
$productCollection = $objectManager->create('Magento\Catalog\Model\ResourceModel\Product\CollectionFactory');
$collection = $productCollection->create()
->addAttributeToSelect('*')
->load();