Changeset 47122 for trunk/src/wp-includes/class-wp-tax-query.php
- Timestamp:
- 01/29/2020 12:43:23 AM (5 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/class-wp-tax-query.php
r45590 r47122 505 505 $alias = false; 506 506 507 // Sanity check. Only IN queries use the JOIN syntax 507 // Sanity check. Only IN queries use the JOIN syntax. 508 508 if ( ! isset( $clause['operator'] ) || 'IN' !== $clause['operator'] ) { 509 509 return $alias; … … 550 550 } 551 551 552 // so long as there are shared terms, include_children requires that a taxonomy is set552 // So long as there are shared terms, 'include_children' requires that a taxonomy is set. 553 553 $query['include_children'] = false; 554 554 } elseif ( ! taxonomy_exists( $query['taxonomy'] ) ) {
Note: See TracChangeset
for help on using the changeset viewer.