Make WordPress Core

Ticket #16730: 16730.quick-n-dirty.diff

File 16730.quick-n-dirty.diff, 471 bytes (added by scribu, 14 years ago)
  • wp-includes/query.php

     
    16541654                }
    16551655
    16561656                foreach ( $GLOBALS['wp_taxonomies'] as $taxonomy => $t ) {
     1657                        if ( 'post_tag' == $taxonomy )
     1658                                continue;       // handled further down
     1659
    16571660                        if ( $t->query_var && !empty( $q[$t->query_var] ) ) {
    16581661                                $tax_query_defaults = array(
    16591662                                        'taxonomy' => $taxonomy,