How to get a category listing from Magento?

后端 未结 8 2081
野性不改
野性不改 2021-01-31 22:33

I want to create a page in Magento that shows a visual representation of the categories.. example

CATEGORY
 product 1
 product 2

ANOTHER CATEGORY
 product 3
         


        
8条回答
  •  醉酒成梦
    2021-01-31 23:16

    Thanks a lot. Really helps. To get the game, make a loop and then getName()

    foreach ($collection as $cat):
    
        echo $cat->getName();
    
    endforeach;
    

提交回复
热议问题