How do I query posts and have their related taxonomies returned in the results?
Welcome to WPSE Jason, get_posts is for querying posts, and the tax_query part of that allows you to select posts which belong to taxonomies of a certain criteria. To get the taxonomy terms of a particular post, use get_the_terms, to which you pass the post’s ID and a taxonomy. It returns an array of taxonomy … Read more