magento
제품 페이지에서 카테고리 이름 가져 오기
수색…
상위 카테고리 가져 오기
$_cat = new Mage_Catalog_Block_Navigation();
$curent_cat = $_cat->getCurrentCategory();
$curent_cat_id = $curent_cat->getId();
$parentId=Mage::getModel('catalog/category')->load($curent_cat_id)->getParentId();
$parent = Mage::getModel('catalog/category')->load($parentId);
$categorydaddy = $parent->getName();
현재 카테고리 가져 오기
$categoryName = Mage::registry('current_category')->getName();
foreach ($categoryName as $_category):
$categoryName = $_category->getName();
endforeach;
Modified text is an extract of the original Stack Overflow Documentation
아래 라이선스 CC BY-SA 3.0
와 제휴하지 않음 Stack Overflow