Query Generators
Query generators write the WP_Query-family calls WordPress core ships — the main loop plus its companion query classes for taxonomies, meta, dates, users, terms and comments. Pick the arguments in a form instead of re-reading the developer handbook every time you need a meta_query relation right.
new WP_Query()WP_QueryEvery argument the loop accepts, with the generated loop included.tax_queryWP_Tax_QueryNested taxonomy clauses with the right relation operators.meta_queryWP_Meta_QueryMeta comparisons with correct types and casting.date_queryWP_Date_QueryDate ranges, relative windows and column targeting.new WP_User_Query()WP_User_QueryQuery users by role, meta, capability and search columns.new WP_Term_Query()WP_Term_QueryFetch terms with hide_empty, ordering and meta clauses.new WP_Comment_Query()WP_Comment_QueryComment queries by status, type, post and hierarchy.