我在Magento商店有几个类别,想要更改他们的名字。因为你可以遍历所有产品
$_productCollection = Mage::getModel('catalog/product')
->getCollection()
->addAttributeToSelect('description')
->load();
foreach($_productCollection as $_product) {
我认为有一种循环类别的方法。 有没有办法做到这一点?
提前致谢!
答案 0 :(得分:1)
使用以下代码,您可以循环浏览类别。
$categories = Mage::getModel('catalog/category')
->getCollection()
->addAttributeToSelect('*')
->addIsActiveFilter();
foreach($categories as $category)
{
echo $category->getName().', ';
}
OR
$category = Mage::getModel('catalog/category');
$tree = $category->getTreeModel();
$tree->load();
$ids = $tree->getCollection()->getAllIds();
if ($ids){
foreach ($ids as $id){
$cat = Mage::getModel('catalog/category');
$cat->load($id);
$entity_id = $cat->getId();
$name = $cat->getName();
$url_key = $cat->getUrlKey();
$url_path = $cat->getUrlPath();
}
}