获取子类别页面中的父类别ID - Magento

时间:2012-07-29 07:59:02

标签: php magento

我需要一小段代码。我有一个像

这样的类别
  • CAT-1
    • 子的Cat-1
    • 子的Cat-2
  • 的Cat-2
    • 子的Cat-3
    • 子的Cat-4

在Sub-Cats页面中,我需要获取Root类别的ID。就像在“Sub-Cat-1”中一样,我需要获得“Cat-1”ID。您可以在儿童类别页面中说,我需要父类别的ID。我正在使用像“abc.com/Sub-Cat-1”这样的短网址,无论是index.php还是URL中的根类别。 我正在使用Magento-1.4.1。请帮我。提前谢谢。

4 个答案:

答案 0 :(得分:5)

我得到了解决方案。

echo $cat_idd = $this->getCurrentCategory()->getParentCategory()->getId(); 

答案 1 :(得分:2)

尝试使用as:

echo $subCategory->getParentId();

答案 2 :(得分:2)

// to get the category ID by product id

$productObj = Mage::getModel('catalog/product')->load($product_id);
$categoryIds =  $productObj->getCategoryIds();

答案 3 :(得分: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 

希望它会对某人有所帮助。