How do I combine these 2 queries
I wouldn’t combine the queries, primarily since they’re keying on different meta keys and values. The WP Query API is very powerful, but you’re trying to do some very advanced searching and sorting here. One option would be to write a raw SQL query by hand and pass it into $wpdb->get_results(), but that won’t necessarily … Read more