Necesito ordenar la colección de productos por orden de ID DESC y agregar límite a la colección de productos. Aquí está mi código:
$objectManager = \Magento\Framework\App\ObjectManager::getInstance();
$productCollection = $objectManager->create('Magento\Catalog\Model\ResourceModel\Product\CollectionFactory');
$collection = $productCollection->create()
->addAttributeToSelect('*')
->load();
magento2
product-collection
Pankaj Sharma
fuente
fuente