Hey there. So I am currently working out a loop that pulls a list of items from three separate parent pages. This all works perfectly except I would like to change the order that they are pulled in to the loop without re organizing the pages themselves as they are nested under three separate categories. Is this something I could use a selector with and possibly provide the client the ability to manually re-organize the order of the items that are being displayed.
$featuredPages = $pages->find('template=Exhibition, Exhibition_Featured=1');
foreach ($featuredPages as $featuredItem){
//doin stuff
}