How do you order posts by type then term_id and then by date?
You can use the orderby parameter and pass it an array of what you want to order by in the order you want it ordered by: https://developer.wordpress.org/reference/classes/wp_query/#order-orderby-parameters This solves the problem of ordering by post type, and by date, but ordering by term slug or term ID is not something WP_Query can do. It may … Read more