Changeset 52472 for branches/5.1/src/wp-includes/class-wp-tax-query.php
- Timestamp:
- 01/06/2022 06:12:33 PM (3 years ago)
- Location:
- branches/5.1
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/5.1
- Property svn:mergeinfo changed
/trunk merged: 52454-52457
- Property svn:mergeinfo changed
-
branches/5.1/src/wp-includes/class-wp-tax-query.php
r43571 r52472 527 527 // The sibling must both have compatible operator to share its alias. 528 528 if ( in_array( strtoupper( $sibling['operator'] ), $compatible_operators ) ) { 529 $alias = $sibling['alias'];529 $alias = preg_replace( '/\W/', '_', $sibling['alias'] ); 530 530 break; 531 531 } … … 556 556 } 557 557 558 $query['terms'] = array_unique( (array) $query['terms'] ); 558 if ( 'slug' === $query['field'] || 'name' === $query['field'] ) { 559 $query['terms'] = array_unique( (array) $query['terms'] ); 560 } else { 561 $query['terms'] = wp_parse_id_list( $query['terms'] ); 562 } 559 563 560 564 if ( is_taxonomy_hierarchical( $query['taxonomy'] ) && $query['include_children'] ) {
Note: See TracChangeset
for help on using the changeset viewer.