現在のカテゴリに関連付けられているすべてのサブカテゴリのリストを表示しているサイトで作業しています。以下のコードはそのためにうまく機能しますが、サブカテゴリのリストの並べ替え方法を変更したいと思います。現在、カテゴリIDで並べ替えています。Magentoユーザーが管理者にカテゴリを配置した順序(ドラッグアンドドロップでカテゴリの順序を変更できる)で表示したいのですが。助けに感謝します!
<?php
$currentCat = Mage::registry('current_category');
if ( $currentCat->getParentId() == Mage::app()->getStore()->getRootCategoryId() )
{
// current category is a toplevel category
$loadCategory = $currentCat;
}
else
{
// current category is a sub-(or subsub-, etc...)category of a toplevel category
// load the parent category of the current category
$loadCategory = Mage::getModel('catalog/category')->load($currentCat->getParentId());
}
$subCategories = explode(',', $loadCategory->getChildren());
foreach ( $subCategories as $subCategoryId )
{
$cat = Mage::getModel('catalog/category')->load($subCategoryId);
if($cat->getIsActive())
{
echo '<a href="'.$cat->getURL().'">'.$cat->getName().'</a>';
}
}
?>