Here is the site I'm working with: http://heretoprotect.com/
// Retrieve a list of selected categories
$categories = get_categories("orderby=order&hide_empty=1&hierarchial=0&include=$front_cat_list");
and then here are is the front_cat_list:
$front_cat_list = "24,4,20,11,25,16";
No matter where in the list I add a category (37 was the particular one I wanted to add), it added it in the upper left position of the two columns of categories, rather than where I placed it. That category had one post attributed to it, and that post was not attributed to any other.
I'm puzzled because I chose the order of the categories in the list in the first place - so I don't get why I can't just add one where I want.
Thoughts?