X-Git-Url: https://scripts.mit.edu/gitweb/autoinstalls/wordpress.git/blobdiff_plain/0278c4b31e94c74bb5da5832653ad26e14a7b275..9c2096d803812dacbdf6cf8efe90053e39f00b96:/wp-includes/query.php diff --git a/wp-includes/query.php b/wp-includes/query.php index ed08ebc4..0fcbf94c 100644 --- a/wp-includes/query.php +++ b/wp-includes/query.php @@ -89,7 +89,7 @@ function set_query_var($var, $value) { */ function &query_posts($query) { unset($GLOBALS['wp_query']); - $GLOBALS['wp_query'] =& new WP_Query(); + $GLOBALS['wp_query'] = new WP_Query(); return $GLOBALS['wp_query']->query($query); } @@ -105,7 +105,7 @@ function &query_posts($query) { */ function wp_reset_query() { unset($GLOBALS['wp_query']); - $GLOBALS['wp_query'] =& $GLOBALS['wp_the_query']; + $GLOBALS['wp_query'] = $GLOBALS['wp_the_query']; wp_reset_postdata(); } @@ -715,6 +715,18 @@ function is_404() { return $wp_query->is_404(); } +/** + * Is the query the main query? + * + * @since 3.3.0 + * + * @return bool + */ +function is_main_query() { + global $wp_query; + return $wp_query->is_main_query(); +} + /* * The Loop. Post loop control. */ @@ -848,6 +860,15 @@ class WP_Query { */ var $tax_query; + /** + * Metadata query container + * + * @since 3.2.0 + * @access public + * @var object WP_Meta_Query + */ + var $meta_query = false; + /** * Holds the data for a single object that is queried. * @@ -1248,6 +1269,15 @@ class WP_Query { */ var $query_vars_changed = true; + /** + * Set if post thumbnails are cached + * + * @since 3.2.0 + * @access public + * @var bool + */ + var $thumbnails_cached = false; + /** * Resets query flags to false. * @@ -1525,8 +1555,6 @@ class WP_Query { } unset( $tax_query ); - _parse_meta_query( $qv ); - if ( empty($qv['author']) || ($qv['author'] == '0') ) { $this->is_author = false; } else { @@ -1625,8 +1653,12 @@ class WP_Query { $qv['post_type'] = sanitize_key($qv['post_type']); } - if ( !empty($qv['post_status']) ) - $qv['post_status'] = preg_replace('|[^a-z0-9_,-]|', '', $qv['post_status']); + if ( ! empty( $qv['post_status'] ) ) { + if ( is_array( $qv['post_status'] ) ) + $qv['post_status'] = array_map('sanitize_key', $qv['post_status']); + else + $qv['post_status'] = preg_replace('|[^a-z0-9_,-]|', '', $qv['post_status']); + } if ( $this->is_posts_page && ( ! isset($qv['withcomments']) || ! $qv['withcomments'] ) ) $this->is_comment_feed = false; @@ -1806,7 +1838,7 @@ class WP_Query { } if ( !empty($q['tag_slug__in']) ) { - $q['tag_slug__in'] = array_map('sanitize_title', array_unique( (array) $q['tag_slug__in'] ) ); + $q['tag_slug__in'] = array_map('sanitize_title_for_query', array_unique( (array) $q['tag_slug__in'] ) ); $tax_query[] = array( 'taxonomy' => 'post_tag', 'terms' => $q['tag_slug__in'], @@ -1815,7 +1847,7 @@ class WP_Query { } if ( !empty($q['tag_slug__and']) ) { - $q['tag_slug__and'] = array_map('sanitize_title', array_unique( (array) $q['tag_slug__and'] ) ); + $q['tag_slug__and'] = array_map('sanitize_title_for_query', array_unique( (array) $q['tag_slug__and'] ) ); $tax_query[] = array( 'taxonomy' => 'post_tag', 'terms' => $q['tag_slug__and'], @@ -1896,6 +1928,10 @@ class WP_Query { // Fill again in case pre_get_posts unset some vars. $q = $this->fill_query_vars($q); + // Parse meta query + $this->meta_query = new WP_Meta_Query(); + $this->meta_query->parse_query_vars( $q ); + // Set a flag if a pre_get_posts hook changed the query vars. $hash = md5( serialize( $this->query_vars ) ); if ( $hash != $this->query_vars_hash ) { @@ -2113,7 +2149,7 @@ class WP_Query { if ( intval($q['comments_popup']) ) $q['p'] = absint($q['comments_popup']); - // If an attachment is requested by number, let it supercede any post number. + // If an attachment is requested by number, let it supersede any post number. if ( $q['attachment_id'] ) $q['p'] = absint($q['attachment_id']); @@ -2155,9 +2191,6 @@ class WP_Query { $search .= "{$searchand}(($wpdb->posts.post_title LIKE '{$n}{$term}{$n}') OR ($wpdb->posts.post_content LIKE '{$n}{$term}{$n}'))"; $searchand = ' AND '; } - $term = esc_sql( like_escape( $q['s'] ) ); - if ( empty($q['sentence']) && count($q['search_terms']) > 1 && $q['search_terms'][0] != $q['s'] ) - $search .= " OR ($wpdb->posts.post_title LIKE '{$n}{$term}{$n}') OR ($wpdb->posts.post_content LIKE '{$n}{$term}{$n}')"; if ( !empty($search) ) { $search = " AND ({$search}) "; @@ -2231,7 +2264,7 @@ class WP_Query { } } - if ( !empty( $this->tax_query->queries ) || !empty( $q['meta_key'] ) ) { + if ( !empty( $this->tax_query->queries ) || !empty( $this->meta_query->queries ) ) { $groupby = "{$wpdb->posts}.ID"; } @@ -2267,7 +2300,7 @@ class WP_Query { if ( $q['author_name'][ count($q['author_name'])-1 ] ) { $q['author_name'] = $q['author_name'][count($q['author_name'])-1]; // no trailing slash } else { - $q['author_name'] = $q['author_name'][count($q['author_name'])-2]; // there was a trailling slash + $q['author_name'] = $q['author_name'][count($q['author_name'])-2]; // there was a trailing slash } } $q['author_name'] = sanitize_title_for_query( $q['author_name'] ); @@ -2291,12 +2324,12 @@ class WP_Query { // Order by if ( empty($q['orderby']) ) { - $q['orderby'] = "$wpdb->posts.post_date " . $q['order']; + $orderby = "$wpdb->posts.post_date " . $q['order']; } elseif ( 'none' == $q['orderby'] ) { - $q['orderby'] = ''; + $orderby = ''; } else { // Used to filter values - $allowed_keys = array('author', 'date', 'title', 'modified', 'menu_order', 'parent', 'ID', 'rand', 'comment_count'); + $allowed_keys = array('name', 'author', 'date', 'title', 'modified', 'menu_order', 'parent', 'ID', 'rand', 'comment_count'); if ( !empty($q['meta_key']) ) { $allowed_keys[] = $q['meta_key']; $allowed_keys[] = 'meta_value'; @@ -2304,10 +2337,9 @@ class WP_Query { } $q['orderby'] = urldecode($q['orderby']); $q['orderby'] = addslashes_gpc($q['orderby']); - $orderby_array = explode(' ', $q['orderby']); - $q['orderby'] = ''; - foreach ( $orderby_array as $i => $orderby ) { + $orderby_array = array(); + foreach ( explode( ' ', $q['orderby'] ) as $i => $orderby ) { // Only allow certain values for safety if ( ! in_array($orderby, $allowed_keys) ) continue; @@ -2335,15 +2367,14 @@ class WP_Query { $orderby = "$wpdb->posts.post_" . $orderby; } - $q['orderby'] .= (($i == 0) ? '' : ',') . $orderby; + $orderby_array[] = $orderby; } + $orderby = implode( ',', $orderby_array ); - // append ASC or DESC at the end - if ( !empty($q['orderby'])) - $q['orderby'] .= " {$q['order']}"; - - if ( empty($q['orderby']) ) - $q['orderby'] = "$wpdb->posts.post_date ".$q['order']; + if ( empty( $orderby ) ) + $orderby = "$wpdb->posts.post_date ".$q['order']; + else + $orderby .= " {$q['order']}"; } if ( is_array( $post_type ) ) { @@ -2354,13 +2385,10 @@ class WP_Query { $post_type_cap = $post_type; } - $exclude_post_types = ''; - $in_search_post_types = get_post_types( array('exclude_from_search' => false) ); - if ( ! empty( $in_search_post_types ) ) - $exclude_post_types .= $wpdb->prepare(" AND $wpdb->posts.post_type IN ('" . join("', '", $in_search_post_types ) . "')"); - if ( 'any' == $post_type ) { - $where .= $exclude_post_types; + $in_search_post_types = get_post_types( array('exclude_from_search' => false) ); + if ( ! empty( $in_search_post_types ) ) + $where .= $wpdb->prepare(" AND $wpdb->posts.post_type IN ('" . join("', '", $in_search_post_types ) . "')"); } elseif ( !empty( $post_type ) && is_array( $post_type ) ) { $where .= " AND $wpdb->posts.post_type IN ('" . join("', '", $post_type) . "')"; } elseif ( ! empty( $post_type ) ) { @@ -2389,13 +2417,15 @@ class WP_Query { $read_private_cap = 'read_private_' . $post_type_cap . 's'; } - if ( isset($q['post_status']) && '' != $q['post_status'] ) { + if ( ! empty( $q['post_status'] ) ) { $statuswheres = array(); - $q_status = explode(',', $q['post_status']); + $q_status = $q['post_status']; + if ( ! is_array( $q_status ) ) + $q_status = explode(',', $q_status); $r_status = array(); $p_status = array(); $e_status = array(); - if ( $q['post_status'] == 'any' ) { + if ( in_array('any', $q_status) ) { foreach ( get_post_stati( array('exclude_from_search' => true) ) as $status ) $e_status[] = "$wpdb->posts.post_status <> '$status'"; } else { @@ -2464,18 +2494,8 @@ class WP_Query { $where .= ')'; } - // Parse the meta query again if query vars have changed. - if ( $this->query_vars_changed ) { - $meta_query_hash = md5( serialize( $q['meta_query'] ) ); - $_meta_query = $q['meta_query']; - unset( $q['meta_query'] ); - _parse_meta_query( $q ); - if ( md5( serialize( $q['meta_query'] ) ) != $meta_query_hash && is_array( $_meta_query ) ) - $q['meta_query'] = array_merge( $_meta_query, $q['meta_query'] ); - } - - if ( !empty( $q['meta_query'] ) ) { - $clauses = call_user_func_array( '_get_meta_sql', array( $q['meta_query'], 'post', $wpdb->posts, 'ID', &$this) ); + if ( !empty( $this->meta_query->queries ) ) { + $clauses = $this->meta_query->get_sql( 'post', $wpdb->posts, 'ID', $this ); $join .= $clauses['join']; $where .= $clauses['where']; } @@ -2542,8 +2562,6 @@ class WP_Query { $where = "AND 0"; } - $orderby = $q['orderby']; - $pieces = array( 'where', 'groupby', 'join', 'orderby', 'distinct', 'fields', 'limits' ); // Apply post-paging filters on where and join. Only plugins that @@ -2724,9 +2742,9 @@ class WP_Query { $this->post_count = count($this->posts); - // Sanitize before caching so it'll only get done once - for ( $i = 0; $i < $this->post_count; $i++ ) { - $this->posts[$i] = sanitize_post($this->posts[$i], 'raw'); + // Always sanitize + foreach ( $this->posts as $i => $post ) { + $this->posts[$i] = sanitize_post( $post, 'raw' ); } if ( $q['cache_results'] ) @@ -2967,7 +2985,7 @@ class WP_Query { } /** - * PHP4 type constructor. + * Constructor. * * Sets up the WordPress query, if parameter is not empty. * @@ -2977,7 +2995,7 @@ class WP_Query { * @param string $query URL query string. * @return WP_Query */ - function WP_Query($query = '') { + function __construct($query = '') { if ( ! empty($query) ) { $this->query($query); } @@ -3458,6 +3476,18 @@ class WP_Query { function is_404() { return (bool) $this->is_404; } + + /** + * Is the query the main query? + * + * @since 3.3.0 + * + * @return bool + */ + function is_main_query() { + global $wp_the_query; + return $wp_the_query === $this; + } } /** @@ -3484,6 +3514,12 @@ function wp_old_slug_redirect() { else $post_type = 'post'; + if ( is_array( $post_type ) ) { + if ( count( $post_type ) > 1 ) + return; + $post_type = array_shift( $post_type ); + } + // Do not attempt redirect for hierarchical post types if ( is_post_type_hierarchical( $post_type ) ) return; @@ -3509,7 +3545,7 @@ function wp_old_slug_redirect() { if ( !$link ) return; - wp_redirect($link, '301'); // Permanent redirect + wp_redirect( $link, 301 ); // Permanent redirect exit; endif; }