Thank you so much. Only I realized that I was actually wanting the categories to be listed by menu rather than the posts. I tried applying that code to the category code but it didn't work. Do you have any ideas how to do that? I REALLY appreciate it.
Here is the current code:
<?php
$categories = get_categories('hide_empty=1&include=' . fs_settings('resourcesleft_categories'));
foreach ($categories as $category) :
query_posts('showposts=' . fs_settings('resourcesleft_category_length') . '&cat='.$category->cat_ID);
if (have_posts()) : $count = 0;
?>
And here is what I tried that did not work:
<?php
$categories = get_categories('hide_empty=1&orderby=menu_order&order=ASC&include=' . fs_settings('resourcesleft_categories'));
foreach ($categories as $category) :
query_posts('showposts=' . fs_settings('resourcesleft_category_length') . '&cat='.$category->cat_ID);
if (have_posts()) : $count = 0;
?>