Changeset 52482 for branches/4.1/src/wp-includes/taxonomy.php
- Timestamp:
- 01/06/2022 06:23:29 PM (3 years ago)
- Location:
- branches/4.1
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/4.1
- Property svn:mergeinfo changed
/trunk merged: 52454-52457
- Property svn:mergeinfo changed
-
branches/4.1/src/wp-includes/taxonomy.php
r37138 r52482 1147 1147 // The sibling must both have compatible operator to share its alias. 1148 1148 if ( in_array( strtoupper( $sibling['operator'] ), $compatible_operators ) ) { 1149 $alias = $sibling['alias'];1149 $alias = preg_replace( '/\W/', '_', $sibling['alias'] ); 1150 1150 break; 1151 1151 } … … 1177 1177 } 1178 1178 1179 $query['terms'] = array_unique( (array) $query['terms'] ); 1179 if ( 'slug' === $query['field'] || 'name' === $query['field'] ) { 1180 $query['terms'] = array_unique( (array) $query['terms'] ); 1181 } else { 1182 $query['terms'] = wp_parse_id_list( $query['terms'] ); 1183 } 1180 1184 1181 1185 if ( is_taxonomy_hierarchical( $query['taxonomy'] ) && $query['include_children'] ) {
Note: See TracChangeset
for help on using the changeset viewer.