我正在学习Magento,但我找不到关于创建新模块的教程或文档显示所有产品。 有人帮帮我吗?
答案 0 :(得分:0)
要显示所有产品,请在PHTML文件中写下以下代码:
echo "<pre>";
$productCollection = Mage::getModel('catalog/product')->getCollection();
foreach($productCollection as $product) {
print_r($product->getData()); //You can display it in tabular structure
}
echo "</pre>";
希望这会有所帮助!!