Sorting categories in Magento according to the position in admin

后端 未结 5 636
天命终不由人
天命终不由人 2020-12-31 12:27

I would like to know how to sort this list of categories (I followed this tutorial here http://www.devinrolsen.com/magento-custom-category-listing-block/) in magento by posi

5条回答
  •  旧时难觅i
    2020-12-31 12:46

    I strongly suggest to lok here first http://www.magentocommerce.com/knowledge-base/entry/magento-for-dev-part-8-varien-data-collections and also other articles in knowledge base are a must read for any magento dev.

    addAttributeToSort('yourfield', 'desc')->getCollection()->getChildren();
    $catIds = explode(',',$cats);
    ?>
    

提交回复
热议问题