Changeset 60048
- Timestamp:
- 03/18/2025 11:32:56 PM (2 months ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/class-wp-query.php
r59993 r60048 1292 1292 $q['category__not_in'] = array_map( 'absint', array_unique( (array) $q['category__not_in'] ) ); 1293 1293 sort( $q['category__not_in'] ); 1294 $tax_query[] 1294 $tax_query[] = array( 1295 1295 'taxonomy' => 'category', 1296 1296 'terms' => $q['category__not_in'], … … 1361 1361 $q['tag__not_in'] = array_map( 'absint', array_unique( (array) $q['tag__not_in'] ) ); 1362 1362 sort( $q['tag__not_in'] ); 1363 $tax_query[] 1363 $tax_query[] = array( 1364 1364 'taxonomy' => 'post_tag', 1365 1365 'terms' => $q['tag__not_in'],
Note: See TracChangeset
for help on using the changeset viewer.