2012-07-05 83 views

回答

3

使用下面的代碼來獲取當前商店的根類別。

<?php Mage::app()->getStore()->getRootCategoryId() ?> 
0
 <? 
     Mage::app('store', 'website');//enter your store and website here 
     $products = Mage::getModel('catalog/product')->getCollection(); 
     $categories = $product->getCategoryIds(); 
     foreach($categories as $k => $_category_id): 
     $_category = Mage::getModel('catalog/category')->load($_category_id); 
     $cat_name = $_category->getName(); 
     $cat_url = $_category->getUrl(); 
     endforeach; 
     ?> 

這是另一種方法。它將列出類別名稱和類別網址。所有你需要做的就是進入商店和網站。希望能幫助到你。