Changeset 43571 for trunk/src/wp-includes/class-wp-query.php
- Timestamp:
- 08/17/2018 01:50:26 AM (7 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/class-wp-query.php
r42876 r43571 1100 1100 foreach ( $terms as $term ) { 1101 1101 $tax_query[] = array_merge( 1102 $tax_query_defaults, array( 1102 $tax_query_defaults, 1103 array( 1103 1104 'terms' => array( $term ), 1104 1105 ) … … 1107 1108 } else { 1108 1109 $tax_query[] = array_merge( 1109 $tax_query_defaults, array( 1110 $tax_query_defaults, 1111 array( 1110 1112 'terms' => preg_split( '/[,]+/', $term ), 1111 1113 ) … … 1429 1431 */ 1430 1432 $words = explode( 1431 ',', _x( 1433 ',', 1434 _x( 1432 1435 'about,an,are,as,at,be,by,com,for,from,how,in,is,it,of,on,or,that,the,this,to,was,what,when,where,who,will,with,www', 1433 1436 'Comma-separated list of search stopwords in your language' … … 1743 1746 if ( isset( $q['caller_get_posts'] ) ) { 1744 1747 _deprecated_argument( 1745 'WP_Query', '3.1.0', 1748 'WP_Query', 1749 '3.1.0', 1746 1750 /* translators: 1: caller_get_posts, 2: ignore_sticky_posts */ 1747 1751 sprintf( … … 2202 2206 array( 2203 2207 'compare' => '=', 2204 ), $q['comment_count'] 2208 ), 2209 $q['comment_count'] 2205 2210 ); 2206 2211
Note: See TracChangeset
for help on using the changeset viewer.