我需要一小行代码。我有一个类别
- 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。请帮我。提前致谢。
我得到了解决方案。
echo $cat_idd = $this->getCurrentCategory()->getParentCategory()->getId();
尝试用作:
echo $subCategory->getParentId();
// to get the category ID by product id
$productObj = Mage::getModel('catalog/product')->load($product_id);
$categoryIds = $productObj->getCategoryIds();
//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
希望它会帮助某人。