按字母顺序获取Magento子类别

时间:2016-11-23 09:20:51

标签: php magento magento-1.9

我正在使用下面的代码来获取类别'9'的所有子类别。
代码工作得很好,但它按id或创建日期对子类别进行排序,我需要按字母顺序对子类别进行排序。

<?php
$categories = Mage::getModel('catalog/category')->getCollection()->addAttributeToSelect('*')->addAttributeToFilter('parent_id', 9);

foreach ($categories as $cat) { ?>
    <?php 
        $entity_id = $cat->getId();
        $name = $cat->getName();
        $url_key = $cat->getUrlKey();
        $url_path = $cat->getUrlPath();
        $skin_url = $cat->getImageUrl();
    ?>
    <div>
        <a href="<?php echo $url_path ?>">
            <?php 
                echo '<img style="width: 100%;" src="'.$skin_url.'" />';
            ?>

            <div class="brand-border-top"></div>
            <div class="brand-border-bottom"></div>
            <div class="brand-overlay">
                <?php echo $name = $cat->getName(); ?>
            </div>
        </a>
    </div>
<?php } ?>

1 个答案:

答案 0 :(得分:1)

使用

->addAttributeToSort('name','ASC');

在你的情况下

$categories = Mage::getModel('catalog/category')->getCollection()->addAttributeToSelect('*')->addAttributeToFilter('parent_id', 9)->addAttributeToSort('name','ASC');