Changeset 53905
- Timestamp:
- 08/18/2022 11:26:54 AM (2 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/class-wp-tax-query.php
r53037 r53905 123 123 124 124 /** 125 * Ensure the 'tax_query' argument passed to the class constructor is well-formed.125 * Ensures the 'tax_query' argument passed to the class constructor is well-formed. 126 126 * 127 127 * Ensures that each query-level clause has a 'relation' key, and that … … 197 197 198 198 /** 199 * Sanitize a 'relation' operator.199 * Sanitizes a 'relation' operator. 200 200 * 201 201 * @since 4.1.0 … … 213 213 214 214 /** 215 * Determine whether a clause is first-order.215 * Determines whether a clause is first-order. 216 216 * 217 217 * A "first-order" clause is one that contains any of the first-order … … 252 252 253 253 /** 254 * Generate SQL clauses to be appended to a main query.254 * Generates SQL clauses to be appended to a main query. 255 255 * 256 256 * Called by the public WP_Tax_Query::get_sql(), this method … … 282 282 283 283 /** 284 * Generate SQL clauses for a single query array.284 * Generates SQL clauses for a single query array. 285 285 * 286 286 * If nested subqueries are found, this method recurses the tree to … … 366 366 367 367 /** 368 * Generate SQL JOIN and WHERE clauses for a "first-order" query clause.368 * Generates SQL JOIN and WHERE clauses for a "first-order" query clause. 369 369 * 370 370 * @since 4.1.0 … … 484 484 485 485 /** 486 * Identif yan existing table alias that is compatible with the current query clause.486 * Identifies an existing table alias that is compatible with the current query clause. 487 487 * 488 488 * We avoid unnecessary table joins by allowing each clause to look for
Note: See TracChangeset
for help on using the changeset viewer.