Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想在主页的自定义类别产品网格中获取类别名称
我怎样才能做到这一点 ?
非常感谢
如果您还没有包含类别对象的变量,请创建一个:
$category = Mage::getModel('catalog/category')->load($categoryId);
那么,取名字就很简单了……
echo $category->getName();