@lmilesw – you can edit line #379 in post-tiles.php to adjust the query and add in a parameter to sort however you’d like. I wanted a specific order in my query, and changed the code so that I could manually select the post order based upon the number assigned through the page attributes. The code looks like this:
$the_query = $posts_query.$cat_query.'&paged='.$paged .'&orderby=menu_order';
You can see at the end, I have it sorted by menu_order
, but you can also sort by author, title, date, etc. For more information on sorting attributes, go to https://codex.www.ads-software.com/Class_Reference/WP_Query#Parameters and scroll down to Orderby.