Get list of posts which have at least one term from a custom taxonomy with WP_Query
Yes, totally possible. SCENARIO 1 If you need only one taxonomy, all you need to do is to get all the term ID’s of all terms assigned to the taxonomy and then pass that array of term ID’s to a tax_query (Requires PHP5.4+) $term_ids = get_terms( ‘TAXONOMY_NAME’, [ // Array of arguments, see get_terms() ‘fields’ … Read more