<?php $objectManager = \Magento\Framework\App\ObjectManager::getInstance(); $productCollection = $objectManager ->create( 'Magento\Catalog\Model\ResourceModel\Product\CollectionFactory' ); $collection = $productCollection ->create() ->addAttributeToSelect( '*' ) ->load(); $store = $objectManager->get('Magento\Store\Model\StoreManagerInterface')->getStore(); foreach ( $collection as $product ){ echo 'Name = ' . $product ->getName(). '<br/>' ; } foreach ($collection as $product) { $imageUrl = $store->getBaseUrl(\Magento\Framework\UrlInterface::URL_TYPE_MEDIA) . 'catalog/product' . $product->getImage(); <div class="item"> <a href="<?= $product->getProductUrl(); ?>"> <div class="product-home"> <span class="tag">NEU</span> <img src="<?php echo $imageUrl; ?>" alt...