Using wp_list_pages to create 2 lists of pages and include and exclude some of them depending on their category
One quick way of doing it without having to set up multiple loops would be to use the get_posts() function and grab all pages, then check through them with in_category() and split out pages that are in the category and pages that are not. You can then run through the 2 groups of pages separately … Read more