4

我需要一小行代码。我有一个类别

  • 1类
    • 亚类 1
    • 亚类 2
  • 2 类
    • 亚类 3
    • 亚类 4

在 Sub-Cats 页面中,我需要获取 Root 类别的 ID。就像在“Sub-Cat-1”中一样,我需要获得“Cat-1”的 ID。您可以在子类别页面中说,我需要父类别的 ID。我正在使用短 URL,例如“abc.com/Sub-Cat-1”,既不是 index.php,也不是 URL 中的根目录。我正在使用 Magento-1.4.1。请帮我。提前致谢。

4

4 回答 4

5

我得到了解决方案。

echo $cat_idd = $this->getCurrentCategory()->getParentCategory()->getId(); 
于 2012-07-29T18:42:02.413 回答
4

尝试用作:

echo $subCategory->getParentId();
于 2012-07-29T08:12:52.763 回答
2
// to get the category ID by product id

$productObj = Mage::getModel('catalog/product')->load($product_id);
$categoryIds =  $productObj->getCategoryIds();
于 2013-03-09T13:04:13.933 回答
1
//Display all categories.

function get_categories(){

    $category = Mage::getModel('catalog/category'); 
    $tree = $category->getTreeModel(); 
    $tree->load();
    $ids = $tree->getCollection()->getAllIds(); 
    $arr = array();
        if ($ids){ 
            foreach ($ids as $id){ 
                $cat = Mage::getModel('catalog/category'); 
                $cat->load($id);
                $arr[$id] = $cat->getName();
        } 
}

return $arr;

}


 $arr =  get_categories();
 $arr = array_flip($arr);




//print the array 

希望它会帮助某人。

于 2013-03-09T12:35:48.883 回答