I am trying custom sort categories by description.The description field of each category only has a number in it.
I have tried this but it does not seem to be working
for ($x = 0; $x < count($categories)-1; $x++){
for ($i = 0; $i < count($categories)-1; $i++){
if (((int)($categories[i]->category_description))<((int)($categories[i+1]->category_description))) {
echo("success");
$temp =$categories[i];
$categories[i]=$categories[i+1];
$categories[i+1]=$temp;
};
};
};
Any ideas would be greatly appreciated,thanks.