Make WordPress Core

Ticket #17592: 17592.patch

File 17592.patch, 1.2 KB (added by ocean90, 13 years ago)
  • wp-includes/query.php

     
    23742374                }
    23752375
    23762376                $exclude_post_types = '';
    2377                 $in_search_post_types = get_post_types( array('exclude_from_search' => false) );
    2378                 if ( ! empty( $in_search_post_types ) )
    2379                         $exclude_post_types .= $wpdb->prepare(" AND $wpdb->posts.post_type IN ('" . join("', '", $in_search_post_types ) . "')");
     2377                if ( is_search() ) {
     2378                        $in_search_post_types = get_post_types( array('exclude_from_search' => false) );
     2379                        if ( ! empty( $in_search_post_types ) )
     2380                                $exclude_post_types .= $wpdb->prepare(" AND $wpdb->posts.post_type IN ('" . join("', '", $in_search_post_types ) . "')");
     2381                }
    23802382
    23812383                if ( 'any' == $post_type ) {
    23822384                        $where .= $exclude_post_types;
     
    24162418                        $r_status = array();
    24172419                        $p_status = array();
    24182420                        $e_status = array();
    2419                         if ( in_array('any', $q_status) ) {
     2421                        if ( in_array('any', $q_status) && ! is_search() ) {
    24202422                                foreach ( get_post_stati( array('exclude_from_search' => true) ) as $status )
    24212423                                        $e_status[] = "$wpdb->posts.post_status <> '$status'";
    24222424                        } else {