Changeset 16513
- Timestamp:
- 11/20/2010 09:43:19 PM (14 years ago)
- Location:
- trunk
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-blog-header.php
r7991 r16513 13 13 14 14 wp(); 15 //echo '<pre>'; print_r($wp_query); echo '</pre>'; exit; 15 16 16 17 require_once( ABSPATH . WPINC . '/template-loader.php' ); -
trunk/wp-includes/query.php
r16512 r16513 1547 1547 1548 1548 if ( !empty($q['category__in']) ) { 1549 $q['category__in'] = array_unique( $q['category__in'] ); 1549 1550 $tax_query[] = array( 1550 1551 'taxonomy' => 'category', … … 1556 1557 1557 1558 if ( !empty($q['category__not_in']) ) { 1559 $q['category__not_in'] = array_unique( $q['category__not_in'] ); 1558 1560 $tax_query[] = array( 1559 1561 'taxonomy' => 'category',
Note: See TracChangeset
for help on using the changeset viewer.