Changes between Initial Version and Version 2 of Ticket #20597
- Timestamp:
- 05/02/2012 03:45:58 AM (11 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #20597 – Description
initial v2 1 1 The attached patch allows WP_Comment_Query::query to accept three additional arguments: 2 2 3 * cat4 * category__in5 * category__not_in3 * `cat` 4 * `category__in` 5 * `category__not_in` 6 6 7 7 The resulting comments are then filtered by these category arguments as well as any other arguments. 8 8 9 These arguments work the same way as their WP_Querycounterparts.9 These arguments work the same way as their `WP_Query` counterparts. 10 10 11 I would appreciate advice on the appropriateness of using INNER JOIN(as I have done here) to join in the taxonomy tables to the query.11 I would appreciate advice on the appropriateness of using `INNER JOIN` (as I have done here) to join in the taxonomy tables to the query.