鑑於塊類型爲「catalog/product_list」,您可以訪問塊Mage_Catalog_Block_Product_List
的功能,即由類別ID加載的產品集合。因此,輸出產品列表及其名稱,圖像和價格的近似代碼將爲:
<?php
$_productCollection=$this->getLoadedProductCollection();
foreach ($_productCollection as $_product): ?>
<div>
<h4><?php echo $this->stripTags($_product->getName());?></h4>
<img src="<?php echo $this->helper('catalog/image')->init($_product, 'small_image')->resize(135);
?>" width="135" height="135" alt="<?php
echo $this->stripTags($this->getImageLabel($_product, 'small_image'), null, true) ?>" />
<?php echo $this->getPriceHtml($_product, true) ?>
</div>
<?php endforeach; ?>