Changeset 34402
- Timestamp:
- 09/22/2015 01:15:45 PM (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/class-wp-tax-query.php
r33760 r34402 1 1 <?php 2 2 /** 3 * Class for generating SQL clauses that filter a primary query according to object taxonomy terms.3 * Taxonomy API: WP_Tax_Query class 4 4 * 5 * `WP_Tax_Query` is a helper that allows primary query classes, such as WP_Query, to filter 6 * their results by object metadata, by generating `JOIN` and `WHERE` subclauses to be attached 7 * to the primary SQL query string. 5 * @package WordPress 6 * @subpackage Taxonomy 7 * @since 4.4.0 8 */ 9 10 /** 11 * Core class used to implement taxonomy queries for the Taxonomy API. 12 * 13 * Used for generating SQL clauses that filter a primary query according to object 14 * taxonomy terms. 15 * 16 * WP_Tax_Query is a helper that allows primary query classes, such as WP_Query, to filter 17 * their results by object metadata, by generating `JOIN` and `WHERE` subclauses to be 18 * attached to the primary SQL query string. 8 19 * 9 20 * @since 3.1.0 10 * @package WordPress11 * @subpackage Taxonomy12 21 */ 13 22 class WP_Tax_Query {
Note: See TracChangeset
for help on using the changeset viewer.