服务报价 | 域名主机 | 网络营销 | 软件工具| [加入收藏]
 热线电话: #
当前位置: 主页 > php教程 > magento教程 >

显示magento的二级子分类方法

时间:2015-12-28 12:18来源:未知 作者:最模板 点击:
使用下面的代码下面显示Magento所有子类别分类页面在: ?php $_helpernew = Mage::helper(catalog/category); $_subcategories = $_category-getChildrenCategories();? ?php if (count($_subcategories) 0): ? ul ?php foreach($_subca
使用下面的代码下面显示Magento所有子类别分类页面在:


<?php
 
$_helpernew = Mage::helper('catalog/category');
 $_subcategories = $_category->getChildrenCategories();?>
                <?php if (count($_subcategories) > 0): ?>
                    <ul>
                        <?php foreach($_subcategories as $_subcategory): ?>
                            <li>
                                <a href="<?php echo $_helpernew->getCategoryUrl($_subcategory) ?>">
                                    <?php echo $_subcategory->getName() ?>
                                </a>
                            </li>
                        <?php endforeach; ?>
                    </ul>
                <?php endif; 
?>
(责任编辑:最模板)
顶一下
(0)
0%
踩一下
(0)
0%
------分隔线----------------------------
栏目列表
热点内容