]> scripts.mit.edu Git - autoinstalls/wordpress.git/blob - wp-includes/query.php
Wordpress 3.1.1-scripts
[autoinstalls/wordpress.git] / wp-includes / query.php
1 <?php
2 /**
3  * WordPress Query API
4  *
5  * The query API attempts to get which part of WordPress to the user is on. It
6  * also provides functionality to getting URL query information.
7  *
8  * @link http://codex.wordpress.org/The_Loop More information on The Loop.
9  *
10  * @package WordPress
11  * @subpackage Query
12  */
13
14 /**
15  * Retrieve variable in the WP_Query class.
16  *
17  * @see WP_Query::get()
18  * @since 1.5.0
19  * @uses $wp_query
20  *
21  * @param string $var The variable key to retrieve.
22  * @return mixed
23  */
24 function get_query_var($var) {
25         global $wp_query;
26
27         return $wp_query->get($var);
28 }
29
30
31 /**
32  * Retrieve the currently-queried object.  Wrapper for $wp_query->get_queried_object()
33  *
34  * @uses WP_Query::get_queried_object
35  *
36  * @since 3.1.0
37  * @access public
38  *
39  * @return object
40  */
41 function get_queried_object() {
42         global $wp_query;
43         return $wp_query->get_queried_object();
44 }
45
46 /**
47  * Retrieve ID of the current queried object. Wrapper for $wp_query->get_queried_object_id()
48  *
49  * @uses WP_Query::get_queried_object_id()
50  *
51  * @since 3.1.0
52  * @access public
53  *
54  * @return int
55  */
56 function get_queried_object_id() {
57         global $wp_query;
58         return $wp_query->get_queried_object_id();
59 }
60
61 /**
62  * Set query variable.
63  *
64  * @see WP_Query::set()
65  * @since 2.2.0
66  * @uses $wp_query
67  *
68  * @param string $var Query variable key.
69  * @param mixed $value
70  * @return null
71  */
72 function set_query_var($var, $value) {
73         global $wp_query;
74
75         return $wp_query->set($var, $value);
76 }
77
78 /**
79  * Set up The Loop with query parameters.
80  *
81  * This will override the current WordPress Loop and shouldn't be used more than
82  * once. This must not be used within the WordPress Loop.
83  *
84  * @since 1.5.0
85  * @uses $wp_query
86  *
87  * @param string $query
88  * @return array List of posts
89  */
90 function &query_posts($query) {
91         unset($GLOBALS['wp_query']);
92         $GLOBALS['wp_query'] =& new WP_Query();
93         return $GLOBALS['wp_query']->query($query);
94 }
95
96 /**
97  * Destroy the previous query and set up a new query.
98  *
99  * This should be used after {@link query_posts()} and before another {@link
100  * query_posts()}. This will remove obscure bugs that occur when the previous
101  * wp_query object is not destroyed properly before another is set up.
102  *
103  * @since 2.3.0
104  * @uses $wp_query
105  */
106 function wp_reset_query() {
107         unset($GLOBALS['wp_query']);
108         $GLOBALS['wp_query'] =& $GLOBALS['wp_the_query'];
109         wp_reset_postdata();
110 }
111
112 /**
113  * After looping through a separate query, this function restores
114  * the $post global to the current post in the main query
115  *
116  * @since 3.0.0
117  * @uses $wp_query
118  */
119 function wp_reset_postdata() {
120         global $wp_query;
121         if ( !empty($wp_query->post) ) {
122                 $GLOBALS['post'] = $wp_query->post;
123                 setup_postdata($wp_query->post);
124         }
125 }
126
127 /*
128  * Query type checks.
129  */
130
131 /**
132  * Is the query for an archive page?
133  *
134  * Month, Year, Category, Author, Post Type archive...
135  *
136  * @see WP_Query::is_archive()
137  * @since 1.5.0
138  * @uses $wp_query
139  *
140  * @return bool
141  */
142 function is_archive() {
143         global $wp_query;
144
145         if ( ! isset( $wp_query ) ) {
146                 _doing_it_wrong( __FUNCTION__, __( 'Conditional query tags do not work before the query is run. Before then, they always return false.' ), '3.1' );
147                 return false;
148         }
149
150         return $wp_query->is_archive();
151 }
152
153 /**
154  * Is the query for a post type archive page?
155  *
156  * @see WP_Query::is_post_type_archive()
157  * @since 3.1.0
158  * @uses $wp_query
159  *
160  * @param mixed $post_types Optional. Post type or array of posts types to check against.
161  * @return bool
162  */
163 function is_post_type_archive( $post_types = '' ) {
164         global $wp_query;
165
166         if ( ! isset( $wp_query ) ) {
167                 _doing_it_wrong( __FUNCTION__, __( 'Conditional query tags do not work before the query is run. Before then, they always return false.' ), '3.1' );
168                 return false;
169         }
170
171         return $wp_query->is_post_type_archive( $post_types );
172 }
173
174 /**
175  * Is the query for an attachment page?
176  *
177  * @see WP_Query::is_attachment()
178  * @since 2.0.0
179  * @uses $wp_query
180  *
181  * @return bool
182  */
183 function is_attachment() {
184         global $wp_query;
185
186         if ( ! isset( $wp_query ) ) {
187                 _doing_it_wrong( __FUNCTION__, __( 'Conditional query tags do not work before the query is run. Before then, they always return false.' ), '3.1' );
188                 return false;
189         }
190
191         return $wp_query->is_attachment();
192 }
193
194 /**
195  * Is the query for an author archive page?
196  *
197  * If the $author parameter is specified, this function will additionally
198  * check if the query is for one of the authors specified.
199  *
200  * @see WP_Query::is_author()
201  * @since 1.5.0
202  * @uses $wp_query
203  *
204  * @param mixed $author Optional. User ID, nickname, nicename, or array of User IDs, nicknames, and nicenames
205  * @return bool
206  */
207 function is_author( $author = '' ) {
208         global $wp_query;
209
210         if ( ! isset( $wp_query ) ) {
211                 _doing_it_wrong( __FUNCTION__, __( 'Conditional query tags do not work before the query is run. Before then, they always return false.' ), '3.1' );
212                 return false;
213         }
214
215         return $wp_query->is_author( $author );
216 }
217
218 /**
219  * Is the query for a category archive page?
220  *
221  * If the $category parameter is specified, this function will additionally
222  * check if the query is for one of the categories specified.
223  *
224  * @see WP_Query::is_category()
225  * @since 1.5.0
226  * @uses $wp_query
227  *
228  * @param mixed $category Optional. Category ID, name, slug, or array of Category IDs, names, and slugs.
229  * @return bool
230  */
231 function is_category( $category = '' ) {
232         global $wp_query;
233
234         if ( ! isset( $wp_query ) ) {
235                 _doing_it_wrong( __FUNCTION__, __( 'Conditional query tags do not work before the query is run. Before then, they always return false.' ), '3.1' );
236                 return false;
237         }
238
239         return $wp_query->is_category( $category );
240 }
241
242 /**
243  * Is the query for a tag archive page?
244  *
245  * If the $tag parameter is specified, this function will additionally
246  * check if the query is for one of the tags specified.
247  *
248  * @see WP_Query::is_tag()
249  * @since 2.3.0
250  * @uses $wp_query
251  *
252  * @param mixed $slug Optional. Tag slug or array of slugs.
253  * @return bool
254  */
255 function is_tag( $slug = '' ) {
256         global $wp_query;
257
258         if ( ! isset( $wp_query ) ) {
259                 _doing_it_wrong( __FUNCTION__, __( 'Conditional query tags do not work before the query is run. Before then, they always return false.' ), '3.1' );
260                 return false;
261         }
262
263         return $wp_query->is_tag( $slug );
264 }
265
266 /**
267  * Is the query for a taxonomy archive page?
268  *
269  * If the $taxonomy parameter is specified, this function will additionally
270  * check if the query is for that specific $taxonomy.
271  *
272  * If the $term parameter is specified in addition to the $taxonomy parameter,
273  * this function will additionally check if the query is for one of the terms
274  * specified.
275  *
276  * @see WP_Query::is_tax()
277  * @since 2.5.0
278  * @uses $wp_query
279  *
280  * @param mixed $taxonomy Optional. Taxonomy slug or slugs.
281  * @param mixed $term Optional. Term ID, name, slug or array of Term IDs, names, and slugs.
282  * @return bool
283  */
284 function is_tax( $taxonomy = '', $term = '' ) {
285         global $wp_query;
286
287         if ( ! isset( $wp_query ) ) {
288                 _doing_it_wrong( __FUNCTION__, __( 'Conditional query tags do not work before the query is run. Before then, they always return false.' ), '3.1' );
289                 return false;
290         }
291
292         return $wp_query->is_tax( $taxonomy, $term );
293 }
294
295 /**
296  * Whether the current URL is within the comments popup window.
297  *
298  * @see WP_Query::is_comments_popup()
299  * @since 1.5.0
300  * @uses $wp_query
301  *
302  * @return bool
303  */
304 function is_comments_popup() {
305         global $wp_query;
306
307         if ( ! isset( $wp_query ) ) {
308                 _doing_it_wrong( __FUNCTION__, __( 'Conditional query tags do not work before the query is run. Before then, they always return false.' ), '3.1' );
309                 return false;
310         }
311
312         return $wp_query->is_comments_popup();
313 }
314
315 /**
316  * Is the query for a date archive?
317  *
318  * @see WP_Query::is_date()
319  * @since 1.5.0
320  * @uses $wp_query
321  *
322  * @return bool
323  */
324 function is_date() {
325         global $wp_query;
326
327         if ( ! isset( $wp_query ) ) {
328                 _doing_it_wrong( __FUNCTION__, __( 'Conditional query tags do not work before the query is run. Before then, they always return false.' ), '3.1' );
329                 return false;
330         }
331
332         return $wp_query->is_date();
333 }
334
335 /**
336  * Is the query for a day archive?
337  *
338  * @see WP_Query::is_day()
339  * @since 1.5.0
340  * @uses $wp_query
341  *
342  * @return bool
343  */
344 function is_day() {
345         global $wp_query;
346
347         if ( ! isset( $wp_query ) ) {
348                 _doing_it_wrong( __FUNCTION__, __( 'Conditional query tags do not work before the query is run. Before then, they always return false.' ), '3.1' );
349                 return false;
350         }
351
352         return $wp_query->is_day();
353 }
354
355 /**
356  * Is the query for a feed?
357  *
358  * @see WP_Query::is_feed()
359  * @since 1.5.0
360  * @uses $wp_query
361  *
362  * @param string|array $feeds Optional feed types to check.
363  * @return bool
364  */
365 function is_feed( $feeds = '' ) {
366         global $wp_query;
367
368         if ( ! isset( $wp_query ) ) {
369                 _doing_it_wrong( __FUNCTION__, __( 'Conditional query tags do not work before the query is run. Before then, they always return false.' ), '3.1' );
370                 return false;
371         }
372
373         return $wp_query->is_feed( $feeds );
374 }
375
376 /**
377  * Is the query for a comments feed?
378  *
379  * @see WP_Query::is_comments_feed()
380  * @since 3.0.0
381  * @uses $wp_query
382  *
383  * @return bool
384  */
385 function is_comment_feed() {
386         global $wp_query;
387
388         if ( ! isset( $wp_query ) ) {
389                 _doing_it_wrong( __FUNCTION__, __( 'Conditional query tags do not work before the query is run. Before then, they always return false.' ), '3.1' );
390                 return false;
391         }
392
393         return $wp_query->is_comment_feed();
394 }
395
396 /**
397  * Is the query for the front page of the site?
398  *
399  * This is for what is displayed at your site's main URL.
400  *
401  * Depends on the site's "Front page displays" Reading Settings 'show_on_front' and 'page_on_front'.
402  *
403  * If you set a static page for the front page of your site, this function will return
404  * true when viewing that page.
405  *
406  * Otherwise the same as @see is_home()
407  *
408  * @see WP_Query::is_front_page()
409  * @since 2.5.0
410  * @uses is_home()
411  * @uses get_option()
412  *
413  * @return bool True, if front of site.
414  */
415 function is_front_page() {
416         global $wp_query;
417
418         if ( ! isset( $wp_query ) ) {
419                 _doing_it_wrong( __FUNCTION__, __( 'Conditional query tags do not work before the query is run. Before then, they always return false.' ), '3.1' );
420                 return false;
421         }
422
423         return $wp_query->is_front_page();
424 }
425
426 /**
427  * Is the query for the blog homepage?
428  *
429  * This is the page which shows the time based blog content of your site.
430  *
431  * Depends on the site's "Front page displays" Reading Settings 'show_on_front' and 'page_for_posts'.
432  *
433  * If you set a static page for the front page of your site, this function will return
434  * true only on the page you set as the "Posts page".
435  *
436  * @see is_front_page()
437  *
438  * @see WP_Query::is_home()
439  * @since 1.5.0
440  * @uses $wp_query
441  *
442  * @return bool True if blog view homepage.
443  */
444 function is_home() {
445         global $wp_query;
446
447         if ( ! isset( $wp_query ) ) {
448                 _doing_it_wrong( __FUNCTION__, __( 'Conditional query tags do not work before the query is run. Before then, they always return false.' ), '3.1' );
449                 return false;
450         }
451
452         return $wp_query->is_home();
453 }
454
455 /**
456  * Is the query for a month archive?
457  *
458  * @see WP_Query::is_month()
459  * @since 1.5.0
460  * @uses $wp_query
461  *
462  * @return bool
463  */
464 function is_month() {
465         global $wp_query;
466
467         if ( ! isset( $wp_query ) ) {
468                 _doing_it_wrong( __FUNCTION__, __( 'Conditional query tags do not work before the query is run. Before then, they always return false.' ), '3.1' );
469                 return false;
470         }
471
472         return $wp_query->is_month();
473 }
474
475 /**
476  * Is the query for a single page?
477  *
478  * If the $page parameter is specified, this function will additionally
479  * check if the query is for one of the pages specified.
480  *
481  * @see is_single()
482  * @see is_singular()
483  *
484  * @see WP_Query::is_page()
485  * @since 1.5.0
486  * @uses $wp_query
487  *
488  * @param mixed $page Page ID, title, slug, or array of such.
489  * @return bool
490  */
491 function is_page( $page = '' ) {
492         global $wp_query;
493
494         if ( ! isset( $wp_query ) ) {
495                 _doing_it_wrong( __FUNCTION__, __( 'Conditional query tags do not work before the query is run. Before then, they always return false.' ), '3.1' );
496                 return false;
497         }
498
499         return $wp_query->is_page( $page );
500 }
501
502 /**
503  * Is the query for paged result and not for the first page?
504  *
505  * @see WP_Query::is_paged()
506  * @since 1.5.0
507  * @uses $wp_query
508  *
509  * @return bool
510  */
511 function is_paged() {
512         global $wp_query;
513
514         if ( ! isset( $wp_query ) ) {
515                 _doing_it_wrong( __FUNCTION__, __( 'Conditional query tags do not work before the query is run. Before then, they always return false.' ), '3.1' );
516                 return false;
517         }
518
519         return $wp_query->is_paged();
520 }
521
522 /**
523  * Is the query for a post or page preview?
524  *
525  * @see WP_Query::is_preview()
526  * @since 2.0.0
527  * @uses $wp_query
528  *
529  * @return bool
530  */
531 function is_preview() {
532         global $wp_query;
533
534         if ( ! isset( $wp_query ) ) {
535                 _doing_it_wrong( __FUNCTION__, __( 'Conditional query tags do not work before the query is run. Before then, they always return false.' ), '3.1' );
536                 return false;
537         }
538
539         return $wp_query->is_preview();
540 }
541
542 /**
543  * Is the query for the robots file?
544  *
545  * @see WP_Query::is_robots()
546  * @since 2.1.0
547  * @uses $wp_query
548  *
549  * @return bool
550  */
551 function is_robots() {
552         global $wp_query;
553
554         if ( ! isset( $wp_query ) ) {
555                 _doing_it_wrong( __FUNCTION__, __( 'Conditional query tags do not work before the query is run. Before then, they always return false.' ), '3.1' );
556                 return false;
557         }
558
559         return $wp_query->is_robots();
560 }
561
562 /**
563  * Is the query for a search?
564  *
565  * @see WP_Query::is_search()
566  * @since 1.5.0
567  * @uses $wp_query
568  *
569  * @return bool
570  */
571 function is_search() {
572         global $wp_query;
573
574         if ( ! isset( $wp_query ) ) {
575                 _doing_it_wrong( __FUNCTION__, __( 'Conditional query tags do not work before the query is run. Before then, they always return false.' ), '3.1' );
576                 return false;
577         }
578
579         return $wp_query->is_search();
580 }
581
582 /**
583  * Is the query for a single post?
584  *
585  * Works for any post type, except attachments and pages
586  *
587  * If the $post parameter is specified, this function will additionally
588  * check if the query is for one of the Posts specified.
589  *
590  * @see is_page()
591  * @see is_singular()
592  *
593  * @see WP_Query::is_single()
594  * @since 1.5.0
595  * @uses $wp_query
596  *
597  * @param mixed $post Post ID, title, slug, or array of such.
598  * @return bool
599  */
600 function is_single( $post = '' ) {
601         global $wp_query;
602
603         if ( ! isset( $wp_query ) ) {
604                 _doing_it_wrong( __FUNCTION__, __( 'Conditional query tags do not work before the query is run. Before then, they always return false.' ), '3.1' );
605                 return false;
606         }
607
608         return $wp_query->is_single( $post );
609 }
610
611 /**
612  * Is the query for a single post of any post type (post, attachment, page, ... )?
613  *
614  * If the $post_types parameter is specified, this function will additionally
615  * check if the query is for one of the Posts Types specified.
616  *
617  * @see is_page()
618  * @see is_single()
619  *
620  * @see WP_Query::is_singular()
621  * @since 1.5.0
622  * @uses $wp_query
623  *
624  * @param mixed $post_types Optional. Post Type or array of Post Types
625  * @return bool
626  */
627 function is_singular( $post_types = '' ) {
628         global $wp_query;
629
630         if ( ! isset( $wp_query ) ) {
631                 _doing_it_wrong( __FUNCTION__, __( 'Conditional query tags do not work before the query is run. Before then, they always return false.' ), '3.1' );
632                 return false;
633         }
634
635         return $wp_query->is_singular( $post_types );
636 }
637
638 /**
639  * Is the query for a specific time?
640  *
641  * @see WP_Query::is_time()
642  * @since 1.5.0
643  * @uses $wp_query
644  *
645  * @return bool
646  */
647 function is_time() {
648         global $wp_query;
649
650         if ( ! isset( $wp_query ) ) {
651                 _doing_it_wrong( __FUNCTION__, __( 'Conditional query tags do not work before the query is run. Before then, they always return false.' ), '3.1' );
652                 return false;
653         }
654
655         return $wp_query->is_time();
656 }
657
658 /**
659  * Is the query for a trackback endpoint call?
660  *
661  * @see WP_Query::is_trackback()
662  * @since 1.5.0
663  * @uses $wp_query
664  *
665  * @return bool
666  */
667 function is_trackback() {
668         global $wp_query;
669
670         if ( ! isset( $wp_query ) ) {
671                 _doing_it_wrong( __FUNCTION__, __( 'Conditional query tags do not work before the query is run. Before then, they always return false.' ), '3.1' );
672                 return false;
673         }
674
675         return $wp_query->is_trackback();
676 }
677
678 /**
679  * Is the query for a specific year?
680  *
681  * @see WP_Query::is_year()
682  * @since 1.5.0
683  * @uses $wp_query
684  *
685  * @return bool
686  */
687 function is_year() {
688         global $wp_query;
689
690         if ( ! isset( $wp_query ) ) {
691                 _doing_it_wrong( __FUNCTION__, __( 'Conditional query tags do not work before the query is run. Before then, they always return false.' ), '3.1' );
692                 return false;
693         }
694
695         return $wp_query->is_year();
696 }
697
698 /**
699  * Is the query a 404 (returns no results)?
700  *
701  * @see WP_Query::is_404()
702  * @since 1.5.0
703  * @uses $wp_query
704  *
705  * @return bool
706  */
707 function is_404() {
708         global $wp_query;
709
710         if ( ! isset( $wp_query ) ) {
711                 _doing_it_wrong( __FUNCTION__, __( 'Conditional query tags do not work before the query is run. Before then, they always return false.' ), '3.1' );
712                 return false;
713         }
714
715         return $wp_query->is_404();
716 }
717
718 /*
719  * The Loop.  Post loop control.
720  */
721
722 /**
723  * Whether current WordPress query has results to loop over.
724  *
725  * @see WP_Query::have_posts()
726  * @since 1.5.0
727  * @uses $wp_query
728  *
729  * @return bool
730  */
731 function have_posts() {
732         global $wp_query;
733
734         return $wp_query->have_posts();
735 }
736
737 /**
738  * Whether the caller is in the Loop.
739  *
740  * @since 2.0.0
741  * @uses $wp_query
742  *
743  * @return bool True if caller is within loop, false if loop hasn't started or ended.
744  */
745 function in_the_loop() {
746         global $wp_query;
747
748         return $wp_query->in_the_loop;
749 }
750
751 /**
752  * Rewind the loop posts.
753  *
754  * @see WP_Query::rewind_posts()
755  * @since 1.5.0
756  * @uses $wp_query
757  *
758  * @return null
759  */
760 function rewind_posts() {
761         global $wp_query;
762
763         return $wp_query->rewind_posts();
764 }
765
766 /**
767  * Iterate the post index in the loop.
768  *
769  * @see WP_Query::the_post()
770  * @since 1.5.0
771  * @uses $wp_query
772  */
773 function the_post() {
774         global $wp_query;
775
776         $wp_query->the_post();
777 }
778
779 /*
780  * Comments loop.
781  */
782
783 /**
784  * Whether there are comments to loop over.
785  *
786  * @see WP_Query::have_comments()
787  * @since 2.2.0
788  * @uses $wp_query
789  *
790  * @return bool
791  */
792 function have_comments() {
793         global $wp_query;
794         return $wp_query->have_comments();
795 }
796
797 /**
798  * Iterate comment index in the comment loop.
799  *
800  * @see WP_Query::the_comment()
801  * @since 2.2.0
802  * @uses $wp_query
803  *
804  * @return object
805  */
806 function the_comment() {
807         global $wp_query;
808         return $wp_query->the_comment();
809 }
810
811 /*
812  * WP_Query
813  */
814
815 /**
816  * The WordPress Query class.
817  *
818  * @link http://codex.wordpress.org/Function_Reference/WP_Query Codex page.
819  *
820  * @since 1.5.0
821  */
822 class WP_Query {
823
824         /**
825          * Query vars set by the user
826          *
827          * @since 1.5.0
828          * @access public
829          * @var array
830          */
831         var $query;
832
833         /**
834          * Query vars, after parsing
835          *
836          * @since 1.5.0
837          * @access public
838          * @var array
839          */
840         var $query_vars = array();
841
842         /**
843          * Taxonomy query, as passed to get_tax_sql()
844          *
845          * @since 3.1.0
846          * @access public
847          * @var object WP_Tax_Query
848          */
849         var $tax_query;
850
851         /**
852          * Holds the data for a single object that is queried.
853          *
854          * Holds the contents of a post, page, category, attachment.
855          *
856          * @since 1.5.0
857          * @access public
858          * @var object|array
859          */
860         var $queried_object;
861
862         /**
863          * The ID of the queried object.
864          *
865          * @since 1.5.0
866          * @access public
867          * @var int
868          */
869         var $queried_object_id;
870
871         /**
872          * Get post database query.
873          *
874          * @since 2.0.1
875          * @access public
876          * @var string
877          */
878         var $request;
879
880         /**
881          * List of posts.
882          *
883          * @since 1.5.0
884          * @access public
885          * @var array
886          */
887         var $posts;
888
889         /**
890          * The amount of posts for the current query.
891          *
892          * @since 1.5.0
893          * @access public
894          * @var int
895          */
896         var $post_count = 0;
897
898         /**
899          * Index of the current item in the loop.
900          *
901          * @since 1.5.0
902          * @access public
903          * @var int
904          */
905         var $current_post = -1;
906
907         /**
908          * Whether the loop has started and the caller is in the loop.
909          *
910          * @since 2.0.0
911          * @access public
912          * @var bool
913          */
914         var $in_the_loop = false;
915
916         /**
917          * The current post ID.
918          *
919          * @since 1.5.0
920          * @access public
921          * @var object
922          */
923         var $post;
924
925         /**
926          * The list of comments for current post.
927          *
928          * @since 2.2.0
929          * @access public
930          * @var array
931          */
932         var $comments;
933
934         /**
935          * The amount of comments for the posts.
936          *
937          * @since 2.2.0
938          * @access public
939          * @var int
940          */
941         var $comment_count = 0;
942
943         /**
944          * The index of the comment in the comment loop.
945          *
946          * @since 2.2.0
947          * @access public
948          * @var int
949          */
950         var $current_comment = -1;
951
952         /**
953          * Current comment ID.
954          *
955          * @since 2.2.0
956          * @access public
957          * @var int
958          */
959         var $comment;
960
961         /**
962          * Amount of posts if limit clause was not used.
963          *
964          * @since 2.1.0
965          * @access public
966          * @var int
967          */
968         var $found_posts = 0;
969
970         /**
971          * The amount of pages.
972          *
973          * @since 2.1.0
974          * @access public
975          * @var int
976          */
977         var $max_num_pages = 0;
978
979         /**
980          * The amount of comment pages.
981          *
982          * @since 2.7.0
983          * @access public
984          * @var int
985          */
986         var $max_num_comment_pages = 0;
987
988         /**
989          * Set if query is single post.
990          *
991          * @since 1.5.0
992          * @access public
993          * @var bool
994          */
995         var $is_single = false;
996
997         /**
998          * Set if query is preview of blog.
999          *
1000          * @since 2.0.0
1001          * @access public
1002          * @var bool
1003          */
1004         var $is_preview = false;
1005
1006         /**
1007          * Set if query returns a page.
1008          *
1009          * @since 1.5.0
1010          * @access public
1011          * @var bool
1012          */
1013         var $is_page = false;
1014
1015         /**
1016          * Set if query is an archive list.
1017          *
1018          * @since 1.5.0
1019          * @access public
1020          * @var bool
1021          */
1022         var $is_archive = false;
1023
1024         /**
1025          * Set if query is part of a date.
1026          *
1027          * @since 1.5.0
1028          * @access public
1029          * @var bool
1030          */
1031         var $is_date = false;
1032
1033         /**
1034          * Set if query contains a year.
1035          *
1036          * @since 1.5.0
1037          * @access public
1038          * @var bool
1039          */
1040         var $is_year = false;
1041
1042         /**
1043          * Set if query contains a month.
1044          *
1045          * @since 1.5.0
1046          * @access public
1047          * @var bool
1048          */
1049         var $is_month = false;
1050
1051         /**
1052          * Set if query contains a day.
1053          *
1054          * @since 1.5.0
1055          * @access public
1056          * @var bool
1057          */
1058         var $is_day = false;
1059
1060         /**
1061          * Set if query contains time.
1062          *
1063          * @since 1.5.0
1064          * @access public
1065          * @var bool
1066          */
1067         var $is_time = false;
1068
1069         /**
1070          * Set if query contains an author.
1071          *
1072          * @since 1.5.0
1073          * @access public
1074          * @var bool
1075          */
1076         var $is_author = false;
1077
1078         /**
1079          * Set if query contains category.
1080          *
1081          * @since 1.5.0
1082          * @access public
1083          * @var bool
1084          */
1085         var $is_category = false;
1086
1087         /**
1088          * Set if query contains tag.
1089          *
1090          * @since 2.3.0
1091          * @access public
1092          * @var bool
1093          */
1094         var $is_tag = false;
1095
1096         /**
1097          * Set if query contains taxonomy.
1098          *
1099          * @since 2.5.0
1100          * @access public
1101          * @var bool
1102          */
1103         var $is_tax = false;
1104
1105         /**
1106          * Set if query was part of a search result.
1107          *
1108          * @since 1.5.0
1109          * @access public
1110          * @var bool
1111          */
1112         var $is_search = false;
1113
1114         /**
1115          * Set if query is feed display.
1116          *
1117          * @since 1.5.0
1118          * @access public
1119          * @var bool
1120          */
1121         var $is_feed = false;
1122
1123         /**
1124          * Set if query is comment feed display.
1125          *
1126          * @since 2.2.0
1127          * @access public
1128          * @var bool
1129          */
1130         var $is_comment_feed = false;
1131
1132         /**
1133          * Set if query is trackback.
1134          *
1135          * @since 1.5.0
1136          * @access public
1137          * @var bool
1138          */
1139         var $is_trackback = false;
1140
1141         /**
1142          * Set if query is blog homepage.
1143          *
1144          * @since 1.5.0
1145          * @access public
1146          * @var bool
1147          */
1148         var $is_home = false;
1149
1150         /**
1151          * Set if query couldn't found anything.
1152          *
1153          * @since 1.5.0
1154          * @access public
1155          * @var bool
1156          */
1157         var $is_404 = false;
1158
1159         /**
1160          * Set if query is within comments popup window.
1161          *
1162          * @since 1.5.0
1163          * @access public
1164          * @var bool
1165          */
1166         var $is_comments_popup = false;
1167
1168         /**
1169          * Set if query is paged
1170          *
1171          * @since 1.5.0
1172          * @access public
1173          * @var bool
1174          */
1175         var $is_paged = false;
1176
1177         /**
1178          * Set if query is part of administration page.
1179          *
1180          * @since 1.5.0
1181          * @access public
1182          * @var bool
1183          */
1184         var $is_admin = false;
1185
1186         /**
1187          * Set if query is an attachment.
1188          *
1189          * @since 2.0.0
1190          * @access public
1191          * @var bool
1192          */
1193         var $is_attachment = false;
1194
1195         /**
1196          * Set if is single, is a page, or is an attachment.
1197          *
1198          * @since 2.1.0
1199          * @access public
1200          * @var bool
1201          */
1202         var $is_singular = false;
1203
1204         /**
1205          * Set if query is for robots.
1206          *
1207          * @since 2.1.0
1208          * @access public
1209          * @var bool
1210          */
1211         var $is_robots = false;
1212
1213         /**
1214          * Set if query contains posts.
1215          *
1216          * Basically, the homepage if the option isn't set for the static homepage.
1217          *
1218          * @since 2.1.0
1219          * @access public
1220          * @var bool
1221          */
1222         var $is_posts_page = false;
1223
1224         /**
1225          * Set if query is for a post type archive.
1226          *
1227          * @since 3.1.0
1228          * @access public
1229          * @var bool
1230          */
1231         var $is_post_type_archive = false;
1232
1233         /**
1234          * Stores the ->query_vars state like md5(serialize( $this->query_vars ) ) so we know
1235          * whether we have to re-parse because something has changed
1236          *
1237          * @since 3.1.0
1238          * @access private
1239          */
1240         var $query_vars_hash = false;
1241
1242         /**
1243          * Whether query vars have changed since the initial parse_query() call.  Used to catch modifications to query vars made
1244          * via pre_get_posts hooks.
1245          *
1246          * @since 3.1.1
1247          * @access private
1248          */
1249         var $query_vars_changed = true;
1250
1251         /**
1252          * Resets query flags to false.
1253          *
1254          * The query flags are what page info WordPress was able to figure out.
1255          *
1256          * @since 2.0.0
1257          * @access private
1258          */
1259         function init_query_flags() {
1260                 $this->is_single = false;
1261                 $this->is_preview = false;
1262                 $this->is_page = false;
1263                 $this->is_archive = false;
1264                 $this->is_date = false;
1265                 $this->is_year = false;
1266                 $this->is_month = false;
1267                 $this->is_day = false;
1268                 $this->is_time = false;
1269                 $this->is_author = false;
1270                 $this->is_category = false;
1271                 $this->is_tag = false;
1272                 $this->is_tax = false;
1273                 $this->is_search = false;
1274                 $this->is_feed = false;
1275                 $this->is_comment_feed = false;
1276                 $this->is_trackback = false;
1277                 $this->is_home = false;
1278                 $this->is_404 = false;
1279                 $this->is_comments_popup = false;
1280                 $this->is_paged = false;
1281                 $this->is_admin = false;
1282                 $this->is_attachment = false;
1283                 $this->is_singular = false;
1284                 $this->is_robots = false;
1285                 $this->is_posts_page = false;
1286                 $this->is_post_type_archive = false;
1287         }
1288
1289         /**
1290          * Initiates object properties and sets default values.
1291          *
1292          * @since 1.5.0
1293          * @access public
1294          */
1295         function init() {
1296                 unset($this->posts);
1297                 unset($this->query);
1298                 $this->query_vars = array();
1299                 unset($this->queried_object);
1300                 unset($this->queried_object_id);
1301                 $this->post_count = 0;
1302                 $this->current_post = -1;
1303                 $this->in_the_loop = false;
1304                 unset( $this->request );
1305                 unset( $this->post );
1306                 unset( $this->comments );
1307                 unset( $this->comment );
1308                 $this->comment_count = 0;
1309                 $this->current_comment = -1;
1310                 $this->found_posts = 0;
1311                 $this->max_num_pages = 0;
1312                 $this->max_num_comment_pages = 0;
1313
1314                 $this->init_query_flags();
1315         }
1316
1317         /**
1318          * Reparse the query vars.
1319          *
1320          * @since 1.5.0
1321          * @access public
1322          */
1323         function parse_query_vars() {
1324                 $this->parse_query();
1325         }
1326
1327         /**
1328          * Fills in the query variables, which do not exist within the parameter.
1329          *
1330          * @since 2.1.0
1331          * @access public
1332          *
1333          * @param array $array Defined query variables.
1334          * @return array Complete query variables with undefined ones filled in empty.
1335          */
1336         function fill_query_vars($array) {
1337                 $keys = array(
1338                         'error'
1339                         , 'm'
1340                         , 'p'
1341                         , 'post_parent'
1342                         , 'subpost'
1343                         , 'subpost_id'
1344                         , 'attachment'
1345                         , 'attachment_id'
1346                         , 'name'
1347                         , 'static'
1348                         , 'pagename'
1349                         , 'page_id'
1350                         , 'second'
1351                         , 'minute'
1352                         , 'hour'
1353                         , 'day'
1354                         , 'monthnum'
1355                         , 'year'
1356                         , 'w'
1357                         , 'category_name'
1358                         , 'tag'
1359                         , 'cat'
1360                         , 'tag_id'
1361                         , 'author_name'
1362                         , 'feed'
1363                         , 'tb'
1364                         , 'paged'
1365                         , 'comments_popup'
1366                         , 'meta_key'
1367                         , 'meta_value'
1368                         , 'preview'
1369                         , 's'
1370                         , 'sentence'
1371                         , 'fields'
1372                 );
1373
1374                 foreach ( $keys as $key ) {
1375                         if ( !isset($array[$key]) )
1376                                 $array[$key] = '';
1377                 }
1378
1379                 $array_keys = array('category__in', 'category__not_in', 'category__and', 'post__in', 'post__not_in',
1380                         'tag__in', 'tag__not_in', 'tag__and', 'tag_slug__in', 'tag_slug__and');
1381
1382                 foreach ( $array_keys as $key ) {
1383                         if ( !isset($array[$key]) )
1384                                 $array[$key] = array();
1385                 }
1386                 return $array;
1387         }
1388
1389         /**
1390          * Parse a query string and set query type booleans.
1391          *
1392          * @since 1.5.0
1393          * @access public
1394          *
1395          * @param string|array $query Optional query.
1396          */
1397         function parse_query( $query =  '' ) {
1398                 if ( ! empty( $query ) ) {
1399                         $this->init();
1400                         $this->query = $this->query_vars = wp_parse_args( $query );
1401                 } elseif ( ! isset( $this->query ) ) {
1402                         $this->query = $this->query_vars;
1403                 }
1404
1405                 $this->query_vars = $this->fill_query_vars($this->query_vars);
1406                 $qv = &$this->query_vars;
1407                 $this->query_vars_changed = true;
1408
1409                 if ( ! empty($qv['robots']) )
1410                         $this->is_robots = true;
1411
1412                 $qv['p'] =  absint($qv['p']);
1413                 $qv['page_id'] =  absint($qv['page_id']);
1414                 $qv['year'] = absint($qv['year']);
1415                 $qv['monthnum'] = absint($qv['monthnum']);
1416                 $qv['day'] = absint($qv['day']);
1417                 $qv['w'] = absint($qv['w']);
1418                 $qv['m'] = absint($qv['m']);
1419                 $qv['paged'] = absint($qv['paged']);
1420                 $qv['cat'] = preg_replace( '|[^0-9,-]|', '', $qv['cat'] ); // comma separated list of positive or negative integers
1421                 $qv['pagename'] = trim( $qv['pagename'] );
1422                 $qv['name'] = trim( $qv['name'] );
1423                 if ( '' !== $qv['hour'] ) $qv['hour'] = absint($qv['hour']);
1424                 if ( '' !== $qv['minute'] ) $qv['minute'] = absint($qv['minute']);
1425                 if ( '' !== $qv['second'] ) $qv['second'] = absint($qv['second']);
1426
1427                 // Compat.  Map subpost to attachment.
1428                 if ( '' != $qv['subpost'] )
1429                         $qv['attachment'] = $qv['subpost'];
1430                 if ( '' != $qv['subpost_id'] )
1431                         $qv['attachment_id'] = $qv['subpost_id'];
1432
1433                 $qv['attachment_id'] = absint($qv['attachment_id']);
1434
1435                 if ( ('' != $qv['attachment']) || !empty($qv['attachment_id']) ) {
1436                         $this->is_single = true;
1437                         $this->is_attachment = true;
1438                 } elseif ( '' != $qv['name'] ) {
1439                         $this->is_single = true;
1440                 } elseif ( $qv['p'] ) {
1441                         $this->is_single = true;
1442                 } elseif ( ('' !== $qv['hour']) && ('' !== $qv['minute']) &&('' !== $qv['second']) && ('' != $qv['year']) && ('' != $qv['monthnum']) && ('' != $qv['day']) ) {
1443                         // If year, month, day, hour, minute, and second are set, a single
1444                         // post is being queried.
1445                         $this->is_single = true;
1446                 } elseif ( '' != $qv['static'] || '' != $qv['pagename'] || !empty($qv['page_id']) ) {
1447                         $this->is_page = true;
1448                         $this->is_single = false;
1449                 } else {
1450                 // Look for archive queries.  Dates, categories, authors, search, post type archives.
1451
1452                         if ( !empty($qv['s']) ) {
1453                                 $this->is_search = true;
1454                         }
1455
1456                         if ( '' !== $qv['second'] ) {
1457                                 $this->is_time = true;
1458                                 $this->is_date = true;
1459                         }
1460
1461                         if ( '' !== $qv['minute'] ) {
1462                                 $this->is_time = true;
1463                                 $this->is_date = true;
1464                         }
1465
1466                         if ( '' !== $qv['hour'] ) {
1467                                 $this->is_time = true;
1468                                 $this->is_date = true;
1469                         }
1470
1471                         if ( $qv['day'] ) {
1472                                 if ( ! $this->is_date ) {
1473                                         $this->is_day = true;
1474                                         $this->is_date = true;
1475                                 }
1476                         }
1477
1478                         if ( $qv['monthnum'] ) {
1479                                 if ( ! $this->is_date ) {
1480                                         $this->is_month = true;
1481                                         $this->is_date = true;
1482                                 }
1483                         }
1484
1485                         if ( $qv['year'] ) {
1486                                 if ( ! $this->is_date ) {
1487                                         $this->is_year = true;
1488                                         $this->is_date = true;
1489                                 }
1490                         }
1491
1492                         if ( $qv['m'] ) {
1493                                 $this->is_date = true;
1494                                 if ( strlen($qv['m']) > 9 ) {
1495                                         $this->is_time = true;
1496                                 } else if ( strlen($qv['m']) > 7 ) {
1497                                         $this->is_day = true;
1498                                 } else if ( strlen($qv['m']) > 5 ) {
1499                                         $this->is_month = true;
1500                                 } else {
1501                                         $this->is_year = true;
1502                                 }
1503                         }
1504
1505                         if ( '' != $qv['w'] ) {
1506                                 $this->is_date = true;
1507                         }
1508
1509                         $this->query_vars_hash = false;
1510                         $this->parse_tax_query( $qv );
1511
1512                         foreach ( $this->tax_query->queries as $tax_query ) {
1513                                 if ( 'IN' == $tax_query['operator'] ) {
1514                                         switch ( $tax_query['taxonomy'] ) {
1515                                                 case 'category':
1516                                                         $this->is_category = true;
1517                                                         break;
1518                                                 case 'post_tag':
1519                                                         $this->is_tag = true;
1520                                                         break;
1521                                                 default:
1522                                                         $this->is_tax = true;
1523                                         }
1524                                 }
1525                         }
1526                         unset( $tax_query );
1527
1528                         _parse_meta_query( $qv );
1529
1530                         if ( empty($qv['author']) || ($qv['author'] == '0') ) {
1531                                 $this->is_author = false;
1532                         } else {
1533                                 $this->is_author = true;
1534                         }
1535
1536                         if ( '' != $qv['author_name'] )
1537                                 $this->is_author = true;
1538
1539                         if ( !empty( $qv['post_type'] ) && ! is_array( $qv['post_type'] ) ) {
1540                                 $post_type_obj = get_post_type_object( $qv['post_type'] );
1541                                 if ( ! empty( $post_type_obj->has_archive ) )
1542                                         $this->is_post_type_archive = true;
1543                         }
1544
1545                         if ( $this->is_post_type_archive || $this->is_date || $this->is_author || $this->is_category || $this->is_tag || $this->is_tax )
1546                                 $this->is_archive = true;
1547                 }
1548
1549                 if ( '' != $qv['feed'] )
1550                         $this->is_feed = true;
1551
1552                 if ( '' != $qv['tb'] )
1553                         $this->is_trackback = true;
1554
1555                 if ( '' != $qv['paged'] && ( intval($qv['paged']) > 1 ) )
1556                         $this->is_paged = true;
1557
1558                 if ( '' != $qv['comments_popup'] )
1559                         $this->is_comments_popup = true;
1560
1561                 // if we're previewing inside the write screen
1562                 if ( '' != $qv['preview'] )
1563                         $this->is_preview = true;
1564
1565                 if ( is_admin() )
1566                         $this->is_admin = true;
1567
1568                 if ( false !== strpos($qv['feed'], 'comments-') ) {
1569                         $qv['feed'] = str_replace('comments-', '', $qv['feed']);
1570                         $qv['withcomments'] = 1;
1571                 }
1572
1573                 $this->is_singular = $this->is_single || $this->is_page || $this->is_attachment;
1574
1575                 if ( $this->is_feed && ( !empty($qv['withcomments']) || ( empty($qv['withoutcomments']) && $this->is_singular ) ) )
1576                         $this->is_comment_feed = true;
1577
1578                 if ( !( $this->is_singular || $this->is_archive || $this->is_search || $this->is_feed || $this->is_trackback || $this->is_404 || $this->is_admin || $this->is_comments_popup || $this->is_robots ) )
1579                         $this->is_home = true;
1580
1581                 // Correct is_* for page_on_front and page_for_posts
1582                 if ( $this->is_home && 'page' == get_option('show_on_front') && get_option('page_on_front') ) {
1583                         $_query = wp_parse_args($this->query);
1584                         // pagename can be set and empty depending on matched rewrite rules. Ignore an empty pagename.
1585                         if ( isset($_query['pagename']) && '' == $_query['pagename'] )
1586                                 unset($_query['pagename']);
1587                         if ( empty($_query) || !array_diff( array_keys($_query), array('preview', 'page', 'paged', 'cpage') ) ) {
1588                                 $this->is_page = true;
1589                                 $this->is_home = false;
1590                                 $qv['page_id'] = get_option('page_on_front');
1591                                 // Correct <!--nextpage--> for page_on_front
1592                                 if ( !empty($qv['paged']) ) {
1593                                         $qv['page'] = $qv['paged'];
1594                                         unset($qv['paged']);
1595                                 }
1596                         }
1597                 }
1598
1599                 if ( '' != $qv['pagename'] ) {
1600                         $this->queried_object =& get_page_by_path($qv['pagename']);
1601                         if ( !empty($this->queried_object) )
1602                                 $this->queried_object_id = (int) $this->queried_object->ID;
1603                         else
1604                                 unset($this->queried_object);
1605
1606                         if  ( 'page' == get_option('show_on_front') && isset($this->queried_object_id) && $this->queried_object_id == get_option('page_for_posts') ) {
1607                                 $this->is_page = false;
1608                                 $this->is_home = true;
1609                                 $this->is_posts_page = true;
1610                         }
1611                 }
1612
1613                 if ( $qv['page_id'] ) {
1614                         if  ( 'page' == get_option('show_on_front') && $qv['page_id'] == get_option('page_for_posts') ) {
1615                                 $this->is_page = false;
1616                                 $this->is_home = true;
1617                                 $this->is_posts_page = true;
1618                         }
1619                 }
1620
1621                 if ( !empty($qv['post_type']) ) {
1622                         if ( is_array($qv['post_type']) )
1623                                 $qv['post_type'] = array_map('sanitize_key', $qv['post_type']);
1624                         else
1625                                 $qv['post_type'] = sanitize_key($qv['post_type']);
1626                 }
1627
1628                 if ( !empty($qv['post_status']) )
1629                         $qv['post_status'] = preg_replace('|[^a-z0-9_,-]|', '', $qv['post_status']);
1630
1631                 if ( $this->is_posts_page && ( ! isset($qv['withcomments']) || ! $qv['withcomments'] ) )
1632                         $this->is_comment_feed = false;
1633
1634                 $this->is_singular = $this->is_single || $this->is_page || $this->is_attachment;
1635                 // Done correcting is_* for page_on_front and page_for_posts
1636
1637                 if ( '404' == $qv['error'] )
1638                         $this->set_404();
1639
1640                 $this->query_vars_hash = md5( serialize( $this->query_vars ) );
1641                 $this->query_vars_changed = false;
1642
1643                 do_action_ref_array('parse_query', array(&$this));
1644         }
1645
1646         /*
1647          * Parses various taxonomy related query vars.
1648          *
1649          * @access protected
1650          * @since 3.1.0
1651          *
1652          * @param array &$q The query variables
1653          */
1654         function parse_tax_query( &$q ) {
1655                 if ( ! empty( $q['tax_query'] ) && is_array( $q['tax_query'] ) ) {
1656                         $tax_query = $q['tax_query'];
1657                 } else {
1658                         $tax_query = array();
1659                 }
1660
1661                 if ( !empty($q['taxonomy']) && !empty($q['term']) ) {
1662                         $tax_query[] = array(
1663                                 'taxonomy' => $q['taxonomy'],
1664                                 'terms' => array( $q['term'] ),
1665                                 'field' => 'slug',
1666                         );
1667                 }
1668
1669                 foreach ( $GLOBALS['wp_taxonomies'] as $taxonomy => $t ) {
1670                         if ( 'post_tag' == $taxonomy )
1671                                 continue;       // Handled further down in the $q['tag'] block
1672
1673                         if ( $t->query_var && !empty( $q[$t->query_var] ) ) {
1674                                 $tax_query_defaults = array(
1675                                         'taxonomy' => $taxonomy,
1676                                         'field' => 'slug',
1677                                 );
1678
1679                                 if ( isset( $t->rewrite['hierarchical'] ) && $t->rewrite['hierarchical'] ) {
1680                                         $q[$t->query_var] = wp_basename( $q[$t->query_var] );
1681                                 }
1682
1683                                 $term = $q[$t->query_var];
1684
1685                                 if ( strpos($term, '+') !== false ) {
1686                                         $terms = preg_split( '/[+]+/', $term );
1687                                         foreach ( $terms as $term ) {
1688                                                 $tax_query[] = array_merge( $tax_query_defaults, array(
1689                                                         'terms' => array( $term )
1690                                                 ) );
1691                                         }
1692                                 } else {
1693                                         $tax_query[] = array_merge( $tax_query_defaults, array(
1694                                                 'terms' => preg_split( '/[,]+/', $term )
1695                                         ) );
1696                                 }
1697                         }
1698                 }
1699
1700                 // Category stuff
1701                 if ( !empty($q['cat']) && '0' != $q['cat'] && !$this->is_singular && $this->query_vars_changed ) {
1702                         $q['cat'] = ''.urldecode($q['cat']).'';
1703                         $q['cat'] = addslashes_gpc($q['cat']);
1704                         $cat_array = preg_split('/[,\s]+/', $q['cat']);
1705                         $q['cat'] = '';
1706                         $req_cats = array();
1707                         foreach ( (array) $cat_array as $cat ) {
1708                                 $cat = intval($cat);
1709                                 $req_cats[] = $cat;
1710                                 $in = ($cat > 0);
1711                                 $cat = abs($cat);
1712                                 if ( $in ) {
1713                                         $q['category__in'][] = $cat;
1714                                         $q['category__in'] = array_merge( $q['category__in'], get_term_children($cat, 'category') );
1715                                 } else {
1716                                         $q['category__not_in'][] = $cat;
1717                                         $q['category__not_in'] = array_merge( $q['category__not_in'], get_term_children($cat, 'category') );
1718                                 }
1719                         }
1720                         $q['cat'] = implode(',', $req_cats);
1721                 }
1722
1723                 if ( !empty($q['category__in']) ) {
1724                         $q['category__in'] = array_map('absint', array_unique( (array) $q['category__in'] ) );
1725                         $tax_query[] = array(
1726                                 'taxonomy' => 'category',
1727                                 'terms' => $q['category__in'],
1728                                 'field' => 'term_id',
1729                                 'include_children' => false
1730                         );
1731                 }
1732
1733                 if ( !empty($q['category__not_in']) ) {
1734                         $q['category__not_in'] = array_map('absint', array_unique( (array) $q['category__not_in'] ) );
1735                         $tax_query[] = array(
1736                                 'taxonomy' => 'category',
1737                                 'terms' => $q['category__not_in'],
1738                                 'operator' => 'NOT IN',
1739                                 'include_children' => false
1740                         );
1741                 }
1742
1743                 if ( !empty($q['category__and']) ) {
1744                         $q['category__and'] = array_map('absint', array_unique( (array) $q['category__and'] ) );
1745                         $tax_query[] = array(
1746                                 'taxonomy' => 'category',
1747                                 'terms' => $q['category__and'],
1748                                 'field' => 'term_id',
1749                                 'operator' => 'AND',
1750                                 'include_children' => false
1751                         );
1752                 }
1753
1754                 // Tag stuff
1755                 if ( '' != $q['tag'] && !$this->is_singular && $this->query_vars_changed ) {
1756                         if ( strpos($q['tag'], ',') !== false ) {
1757                                 $tags = preg_split('/[,\s]+/', $q['tag']);
1758                                 foreach ( (array) $tags as $tag ) {
1759                                         $tag = sanitize_term_field('slug', $tag, 0, 'post_tag', 'db');
1760                                         $q['tag_slug__in'][] = $tag;
1761                                 }
1762                         } else if ( preg_match('/[+\s]+/', $q['tag']) || !empty($q['cat']) ) {
1763                                 $tags = preg_split('/[+\s]+/', $q['tag']);
1764                                 foreach ( (array) $tags as $tag ) {
1765                                         $tag = sanitize_term_field('slug', $tag, 0, 'post_tag', 'db');
1766                                         $q['tag_slug__and'][] = $tag;
1767                                 }
1768                         } else {
1769                                 $q['tag'] = sanitize_term_field('slug', $q['tag'], 0, 'post_tag', 'db');
1770                                 $q['tag_slug__in'][] = $q['tag'];
1771                         }
1772                 }
1773
1774                 if ( !empty($q['tag_id']) ) {
1775                         $q['tag_id'] = absint( $q['tag_id'] );
1776                         $tax_query[] = array(
1777                                 'taxonomy' => 'post_tag',
1778                                 'terms' => $q['tag_id']
1779                         );
1780                 }
1781
1782                 if ( !empty($q['tag__in']) ) {
1783                         $q['tag__in'] = array_map('absint', array_unique( (array) $q['tag__in'] ) );
1784                         $tax_query[] = array(
1785                                 'taxonomy' => 'post_tag',
1786                                 'terms' => $q['tag__in']
1787                         );
1788                 }
1789
1790                 if ( !empty($q['tag__not_in']) ) {
1791                         $q['tag__not_in'] = array_map('absint', array_unique( (array) $q['tag__not_in'] ) );
1792                         $tax_query[] = array(
1793                                 'taxonomy' => 'post_tag',
1794                                 'terms' => $q['tag__not_in'],
1795                                 'operator' => 'NOT IN'
1796                         );
1797                 }
1798
1799                 if ( !empty($q['tag__and']) ) {
1800                         $q['tag__and'] = array_map('absint', array_unique( (array) $q['tag__and'] ) );
1801                         $tax_query[] = array(
1802                                 'taxonomy' => 'post_tag',
1803                                 'terms' => $q['tag__and'],
1804                                 'operator' => 'AND'
1805                         );
1806                 }
1807
1808                 if ( !empty($q['tag_slug__in']) ) {
1809                         $q['tag_slug__in'] = array_map('sanitize_title', array_unique( (array) $q['tag_slug__in'] ) );
1810                         $tax_query[] = array(
1811                                 'taxonomy' => 'post_tag',
1812                                 'terms' => $q['tag_slug__in'],
1813                                 'field' => 'slug'
1814                         );
1815                 }
1816
1817                 if ( !empty($q['tag_slug__and']) ) {
1818                         $q['tag_slug__and'] = array_map('sanitize_title', array_unique( (array) $q['tag_slug__and'] ) );
1819                         $tax_query[] = array(
1820                                 'taxonomy' => 'post_tag',
1821                                 'terms' => $q['tag_slug__and'],
1822                                 'field' => 'slug',
1823                                 'operator' => 'AND'
1824                         );
1825                 }
1826
1827                 $this->tax_query = new WP_Tax_Query( $tax_query );
1828         }
1829
1830         /**
1831          * Sets the 404 property and saves whether query is feed.
1832          *
1833          * @since 2.0.0
1834          * @access public
1835          */
1836         function set_404() {
1837                 $is_feed = $this->is_feed;
1838
1839                 $this->init_query_flags();
1840                 $this->is_404 = true;
1841
1842                 $this->is_feed = $is_feed;
1843         }
1844
1845         /**
1846          * Retrieve query variable.
1847          *
1848          * @since 1.5.0
1849          * @access public
1850          *
1851          * @param string $query_var Query variable key.
1852          * @return mixed
1853          */
1854         function get($query_var) {
1855                 if ( isset($this->query_vars[$query_var]) )
1856                         return $this->query_vars[$query_var];
1857
1858                 return '';
1859         }
1860
1861         /**
1862          * Set query variable.
1863          *
1864          * @since 1.5.0
1865          * @access public
1866          *
1867          * @param string $query_var Query variable key.
1868          * @param mixed $value Query variable value.
1869          */
1870         function set($query_var, $value) {
1871                 $this->query_vars[$query_var] = $value;
1872         }
1873
1874         /**
1875          * Retrieve the posts based on query variables.
1876          *
1877          * There are a few filters and actions that can be used to modify the post
1878          * database query.
1879          *
1880          * @since 1.5.0
1881          * @access public
1882          * @uses do_action_ref_array() Calls 'pre_get_posts' hook before retrieving posts.
1883          *
1884          * @return array List of posts.
1885          */
1886         function &get_posts() {
1887                 global $wpdb, $user_ID, $_wp_using_ext_object_cache;
1888
1889                 $this->parse_query();
1890
1891                 do_action_ref_array('pre_get_posts', array(&$this));
1892
1893                 // Shorthand.
1894                 $q = &$this->query_vars;
1895
1896                 // Fill again in case pre_get_posts unset some vars.
1897                 $q = $this->fill_query_vars($q);
1898
1899                 // Set a flag if a pre_get_posts hook changed the query vars.
1900                 $hash = md5( serialize( $this->query_vars ) );
1901                 if ( $hash != $this->query_vars_hash ) {
1902                         $this->query_vars_changed = true;
1903                         $this->query_vars_hash = $hash;
1904                 }
1905                 unset($hash);
1906
1907                 // First let's clear some variables
1908                 $distinct = '';
1909                 $whichauthor = '';
1910                 $whichmimetype = '';
1911                 $where = '';
1912                 $limits = '';
1913                 $join = '';
1914                 $search = '';
1915                 $groupby = '';
1916                 $fields = '';
1917                 $post_status_join = false;
1918                 $page = 1;
1919
1920                 if ( isset( $q['caller_get_posts'] ) ) {
1921                         _deprecated_argument( 'WP_Query', '3.1', __( '"caller_get_posts" is deprecated. Use "ignore_sticky_posts" instead.' ) );
1922                         if ( !isset( $q['ignore_sticky_posts'] ) )
1923                                 $q['ignore_sticky_posts'] = $q['caller_get_posts'];
1924                 }
1925
1926                 if ( !isset( $q['ignore_sticky_posts'] ) )
1927                         $q['ignore_sticky_posts'] = false;
1928
1929                 if ( !isset($q['suppress_filters']) )
1930                         $q['suppress_filters'] = false;
1931
1932                 if ( !isset($q['cache_results']) ) {
1933                         if ( $_wp_using_ext_object_cache )
1934                                 $q['cache_results'] = false;
1935                         else
1936                                 $q['cache_results'] = true;
1937                 }
1938
1939                 if ( !isset($q['update_post_term_cache']) )
1940                         $q['update_post_term_cache'] = true;
1941
1942                 if ( !isset($q['update_post_meta_cache']) )
1943                         $q['update_post_meta_cache'] = true;
1944
1945                 if ( !isset($q['post_type']) ) {
1946                         if ( $this->is_search )
1947                                 $q['post_type'] = 'any';
1948                         else
1949                                 $q['post_type'] = '';
1950                 }
1951                 $post_type = $q['post_type'];
1952                 if ( !isset($q['posts_per_page']) || $q['posts_per_page'] == 0 )
1953                         $q['posts_per_page'] = get_option('posts_per_page');
1954                 if ( isset($q['showposts']) && $q['showposts'] ) {
1955                         $q['showposts'] = (int) $q['showposts'];
1956                         $q['posts_per_page'] = $q['showposts'];
1957                 }
1958                 if ( (isset($q['posts_per_archive_page']) && $q['posts_per_archive_page'] != 0) && ($this->is_archive || $this->is_search) )
1959                         $q['posts_per_page'] = $q['posts_per_archive_page'];
1960                 if ( !isset($q['nopaging']) ) {
1961                         if ( $q['posts_per_page'] == -1 ) {
1962                                 $q['nopaging'] = true;
1963                         } else {
1964                                 $q['nopaging'] = false;
1965                         }
1966                 }
1967                 if ( $this->is_feed ) {
1968                         $q['posts_per_page'] = get_option('posts_per_rss');
1969                         $q['nopaging'] = false;
1970                 }
1971                 $q['posts_per_page'] = (int) $q['posts_per_page'];
1972                 if ( $q['posts_per_page'] < -1 )
1973                         $q['posts_per_page'] = abs($q['posts_per_page']);
1974                 else if ( $q['posts_per_page'] == 0 )
1975                         $q['posts_per_page'] = 1;
1976
1977                 if ( !isset($q['comments_per_page']) || $q['comments_per_page'] == 0 )
1978                         $q['comments_per_page'] = get_option('comments_per_page');
1979
1980                 if ( $this->is_home && (empty($this->query) || $q['preview'] == 'true') && ( 'page' == get_option('show_on_front') ) && get_option('page_on_front') ) {
1981                         $this->is_page = true;
1982                         $this->is_home = false;
1983                         $q['page_id'] = get_option('page_on_front');
1984                 }
1985
1986                 if ( isset($q['page']) ) {
1987                         $q['page'] = trim($q['page'], '/');
1988                         $q['page'] = absint($q['page']);
1989                 }
1990
1991                 // If true, forcibly turns off SQL_CALC_FOUND_ROWS even when limits are present.
1992                 if ( isset($q['no_found_rows']) )
1993                         $q['no_found_rows'] = (bool) $q['no_found_rows'];
1994                 else
1995                         $q['no_found_rows'] = false;
1996
1997                 switch ( $q['fields'] ) {
1998                         case 'ids':
1999                                 $fields = "$wpdb->posts.ID";
2000                                 break;
2001                         case 'id=>parent':
2002                                 $fields = "$wpdb->posts.ID, $wpdb->posts.post_parent";
2003                                 break;
2004                         default:
2005                                 $fields = "$wpdb->posts.*";
2006                 }
2007
2008                 // If a month is specified in the querystring, load that month
2009                 if ( $q['m'] ) {
2010                         $q['m'] = '' . preg_replace('|[^0-9]|', '', $q['m']);
2011                         $where .= " AND YEAR($wpdb->posts.post_date)=" . substr($q['m'], 0, 4);
2012                         if ( strlen($q['m']) > 5 )
2013                                 $where .= " AND MONTH($wpdb->posts.post_date)=" . substr($q['m'], 4, 2);
2014                         if ( strlen($q['m']) > 7 )
2015                                 $where .= " AND DAYOFMONTH($wpdb->posts.post_date)=" . substr($q['m'], 6, 2);
2016                         if ( strlen($q['m']) > 9 )
2017                                 $where .= " AND HOUR($wpdb->posts.post_date)=" . substr($q['m'], 8, 2);
2018                         if ( strlen($q['m']) > 11 )
2019                                 $where .= " AND MINUTE($wpdb->posts.post_date)=" . substr($q['m'], 10, 2);
2020                         if ( strlen($q['m']) > 13 )
2021                                 $where .= " AND SECOND($wpdb->posts.post_date)=" . substr($q['m'], 12, 2);
2022                 }
2023
2024                 if ( '' !== $q['hour'] )
2025                         $where .= " AND HOUR($wpdb->posts.post_date)='" . $q['hour'] . "'";
2026
2027                 if ( '' !== $q['minute'] )
2028                         $where .= " AND MINUTE($wpdb->posts.post_date)='" . $q['minute'] . "'";
2029
2030                 if ( '' !== $q['second'] )
2031                         $where .= " AND SECOND($wpdb->posts.post_date)='" . $q['second'] . "'";
2032
2033                 if ( $q['year'] )
2034                         $where .= " AND YEAR($wpdb->posts.post_date)='" . $q['year'] . "'";
2035
2036                 if ( $q['monthnum'] )
2037                         $where .= " AND MONTH($wpdb->posts.post_date)='" . $q['monthnum'] . "'";
2038
2039                 if ( $q['day'] )
2040                         $where .= " AND DAYOFMONTH($wpdb->posts.post_date)='" . $q['day'] . "'";
2041
2042                 // If we've got a post_type AND its not "any" post_type.
2043                 if ( !empty($q['post_type']) && 'any' != $q['post_type'] ) {
2044                         foreach ( (array)$q['post_type'] as $_post_type ) {
2045                                 $ptype_obj = get_post_type_object($_post_type);
2046                                 if ( !$ptype_obj || !$ptype_obj->query_var || empty($q[ $ptype_obj->query_var ]) )
2047                                         continue;
2048
2049                                 if ( ! $ptype_obj->hierarchical || strpos($q[ $ptype_obj->query_var ], '/') === false ) {
2050                                         // Non-hierarchical post_types & parent-level-hierarchical post_types can directly use 'name'
2051                                         $q['name'] = $q[ $ptype_obj->query_var ];
2052                                 } else {
2053                                         // Hierarchical post_types will operate through the
2054                                         $q['pagename'] = $q[ $ptype_obj->query_var ];
2055                                         $q['name'] = '';
2056                                 }
2057
2058                                 // Only one request for a slug is possible, this is why name & pagename are overwritten above.
2059                                 break;
2060                         } //end foreach
2061                         unset($ptype_obj);
2062                 }
2063
2064                 if ( '' != $q['name'] ) {
2065                         $q['name'] = sanitize_title_for_query( $q['name'] );
2066                         $where .= " AND $wpdb->posts.post_name = '" . $q['name'] . "'";
2067                 } elseif ( '' != $q['pagename'] ) {
2068                         if ( isset($this->queried_object_id) ) {
2069                                 $reqpage = $this->queried_object_id;
2070                         } else {
2071                                 if ( 'page' != $q['post_type'] ) {
2072                                         foreach ( (array)$q['post_type'] as $_post_type ) {
2073                                                 $ptype_obj = get_post_type_object($_post_type);
2074                                                 if ( !$ptype_obj || !$ptype_obj->hierarchical )
2075                                                         continue;
2076
2077                                                 $reqpage = get_page_by_path($q['pagename'], OBJECT, $_post_type);
2078                                                 if ( $reqpage )
2079                                                         break;
2080                                         }
2081                                         unset($ptype_obj);
2082                                 } else {
2083                                         $reqpage = get_page_by_path($q['pagename']);
2084                                 }
2085                                 if ( !empty($reqpage) )
2086                                         $reqpage = $reqpage->ID;
2087                                 else
2088                                         $reqpage = 0;
2089                         }
2090
2091                         $page_for_posts = get_option('page_for_posts');
2092                         if  ( ('page' != get_option('show_on_front') ) || empty($page_for_posts) || ( $reqpage != $page_for_posts ) ) {
2093                                 $q['pagename'] = sanitize_title_for_query( wp_basename( $q['pagename'] ) );
2094                                 $q['name'] = $q['pagename'];
2095                                 $where .= " AND ($wpdb->posts.ID = '$reqpage')";
2096                                 $reqpage_obj = get_page($reqpage);
2097                                 if ( is_object($reqpage_obj) && 'attachment' == $reqpage_obj->post_type ) {
2098                                         $this->is_attachment = true;
2099                                         $post_type = $q['post_type'] = 'attachment';
2100                                         $this->is_page = true;
2101                                         $q['attachment_id'] = $reqpage;
2102                                 }
2103                         }
2104                 } elseif ( '' != $q['attachment'] ) {
2105                         $q['attachment'] = sanitize_title_for_query( wp_basename( $q['attachment'] ) );
2106                         $q['name'] = $q['attachment'];
2107                         $where .= " AND $wpdb->posts.post_name = '" . $q['attachment'] . "'";
2108                 }
2109
2110                 if ( $q['w'] )
2111                         $where .= ' AND ' . _wp_mysql_week( "`$wpdb->posts`.`post_date`" ) . " = '" . $q['w'] . "'";
2112
2113                 if ( intval($q['comments_popup']) )
2114                         $q['p'] = absint($q['comments_popup']);
2115
2116                 // If an attachment is requested by number, let it supercede any post number.
2117                 if ( $q['attachment_id'] )
2118                         $q['p'] = absint($q['attachment_id']);
2119
2120                 // If a post number is specified, load that post
2121                 if ( $q['p'] ) {
2122                         $where .= " AND {$wpdb->posts}.ID = " . $q['p'];
2123                 } elseif ( $q['post__in'] ) {
2124                         $post__in = implode(',', array_map( 'absint', $q['post__in'] ));
2125                         $where .= " AND {$wpdb->posts}.ID IN ($post__in)";
2126                 } elseif ( $q['post__not_in'] ) {
2127                         $post__not_in = implode(',',  array_map( 'absint', $q['post__not_in'] ));
2128                         $where .= " AND {$wpdb->posts}.ID NOT IN ($post__not_in)";
2129                 }
2130
2131                 if ( is_numeric($q['post_parent']) )
2132                         $where .= $wpdb->prepare( " AND $wpdb->posts.post_parent = %d ", $q['post_parent'] );
2133
2134                 if ( $q['page_id'] ) {
2135                         if  ( ('page' != get_option('show_on_front') ) || ( $q['page_id'] != get_option('page_for_posts') ) ) {
2136                                 $q['p'] = $q['page_id'];
2137                                 $where = " AND {$wpdb->posts}.ID = " . $q['page_id'];
2138                         }
2139                 }
2140
2141                 // If a search pattern is specified, load the posts that match
2142                 if ( !empty($q['s']) ) {
2143                         // added slashes screw with quote grouping when done early, so done later
2144                         $q['s'] = stripslashes($q['s']);
2145                         if ( !empty($q['sentence']) ) {
2146                                 $q['search_terms'] = array($q['s']);
2147                         } else {
2148                                 preg_match_all('/".*?("|$)|((?<=[\\s",+])|^)[^\\s",+]+/', $q['s'], $matches);
2149                                 $q['search_terms'] = array_map('_search_terms_tidy', $matches[0]);
2150                         }
2151                         $n = !empty($q['exact']) ? '' : '%';
2152                         $searchand = '';
2153                         foreach( (array) $q['search_terms'] as $term ) {
2154                                 $term = esc_sql( like_escape( $term ) );
2155                                 $search .= "{$searchand}(($wpdb->posts.post_title LIKE '{$n}{$term}{$n}') OR ($wpdb->posts.post_content LIKE '{$n}{$term}{$n}'))";
2156                                 $searchand = ' AND ';
2157                         }
2158                         $term = esc_sql( like_escape( $q['s'] ) );
2159                         if ( empty($q['sentence']) && count($q['search_terms']) > 1 && $q['search_terms'][0] != $q['s'] )
2160                                 $search .= " OR ($wpdb->posts.post_title LIKE '{$n}{$term}{$n}') OR ($wpdb->posts.post_content LIKE '{$n}{$term}{$n}')";
2161
2162                         if ( !empty($search) ) {
2163                                 $search = " AND ({$search}) ";
2164                                 if ( !is_user_logged_in() )
2165                                         $search .= " AND ($wpdb->posts.post_password = '') ";
2166                         }
2167                 }
2168
2169                 // Allow plugins to contextually add/remove/modify the search section of the database query
2170                 $search = apply_filters_ref_array('posts_search', array( $search, &$this ) );
2171
2172                 // Taxonomies
2173                 if ( !$this->is_singular ) {
2174                         $this->parse_tax_query( $q );
2175
2176                         $clauses = $this->tax_query->get_sql( $wpdb->posts, 'ID' );
2177
2178                         $join .= $clauses['join'];
2179                         $where .= $clauses['where'];
2180                 }
2181
2182                 if ( $this->is_tax ) {
2183                         if ( empty($post_type) ) {
2184                                 $post_type = 'any';
2185                                 $post_status_join = true;
2186                         } elseif ( in_array('attachment', (array) $post_type) ) {
2187                                 $post_status_join = true;
2188                         }
2189                 }
2190
2191                 // Back-compat
2192                 if ( !empty($this->tax_query->queries) ) {
2193                         $tax_query_in_and = wp_list_filter( $this->tax_query->queries, array( 'operator' => 'NOT IN' ), 'NOT' );
2194                         if ( !empty( $tax_query_in_and ) ) {
2195                                 if ( !isset( $q['taxonomy'] ) ) {
2196                                         foreach ( $tax_query_in_and as $a_tax_query ) {
2197                                                 if ( !in_array( $a_tax_query['taxonomy'], array( 'category', 'post_tag' ) ) ) {
2198                                                         $q['taxonomy'] = $a_tax_query['taxonomy'];
2199                                                         if ( 'slug' == $a_tax_query['field'] )
2200                                                                 $q['term'] = $a_tax_query['terms'][0];
2201                                                         else
2202                                                                 $q['term_id'] = $a_tax_query['terms'][0];
2203
2204                                                         break;
2205                                                 }
2206                                         }
2207                                 }
2208
2209                                 $cat_query = wp_list_filter( $tax_query_in_and, array( 'taxonomy' => 'category' ) );
2210                                 if ( !empty( $cat_query ) ) {
2211                                         $cat_query = reset( $cat_query );
2212                                         $the_cat = get_term_by( $cat_query['field'], $cat_query['terms'][0], 'category' );
2213                                         if ( $the_cat ) {
2214                                                 $this->set( 'cat', $the_cat->term_id );
2215                                                 $this->set( 'category_name', $the_cat->slug );
2216                                         }
2217                                         unset( $the_cat );
2218                                 }
2219                                 unset( $cat_query );
2220
2221                                 $tag_query = wp_list_filter( $tax_query_in_and, array( 'taxonomy' => 'post_tag' ) );
2222                                 if ( !empty( $tag_query ) ) {
2223                                         $tag_query = reset( $tag_query );
2224                                         $the_tag = get_term_by( $tag_query['field'], $tag_query['terms'][0], 'post_tag' );
2225                                         if ( $the_tag ) {
2226                                                 $this->set( 'tag_id', $the_tag->term_id );
2227                                         }
2228                                         unset( $the_tag );
2229                                 }
2230                                 unset( $tag_query );
2231                         }
2232                 }
2233
2234                 if ( !empty( $this->tax_query->queries ) || !empty( $q['meta_key'] ) ) {
2235                         $groupby = "{$wpdb->posts}.ID";
2236                 }
2237
2238                 // Author/user stuff
2239
2240                 if ( empty($q['author']) || ($q['author'] == '0') ) {
2241                         $whichauthor = '';
2242                 } else {
2243                         $q['author'] = (string)urldecode($q['author']);
2244                         $q['author'] = addslashes_gpc($q['author']);
2245                         if ( strpos($q['author'], '-') !== false ) {
2246                                 $eq = '!=';
2247                                 $andor = 'AND';
2248                                 $q['author'] = explode('-', $q['author']);
2249                                 $q['author'] = (string)absint($q['author'][1]);
2250                         } else {
2251                                 $eq = '=';
2252                                 $andor = 'OR';
2253                         }
2254                         $author_array = preg_split('/[,\s]+/', $q['author']);
2255                         $_author_array = array();
2256                         foreach ( $author_array as $key => $_author )
2257                                 $_author_array[] = "$wpdb->posts.post_author " . $eq . ' ' . absint($_author);
2258                         $whichauthor .= ' AND (' . implode(" $andor ", $_author_array) . ')';
2259                         unset($author_array, $_author_array);
2260                 }
2261
2262                 // Author stuff for nice URLs
2263
2264                 if ( '' != $q['author_name'] ) {
2265                         if ( strpos($q['author_name'], '/') !== false ) {
2266                                 $q['author_name'] = explode('/', $q['author_name']);
2267                                 if ( $q['author_name'][ count($q['author_name'])-1 ] ) {
2268                                         $q['author_name'] = $q['author_name'][count($q['author_name'])-1]; // no trailing slash
2269                                 } else {
2270                                         $q['author_name'] = $q['author_name'][count($q['author_name'])-2]; // there was a trailling slash
2271                                 }
2272                         }
2273                         $q['author_name'] = sanitize_title_for_query( $q['author_name'] );
2274                         $q['author'] = get_user_by('slug', $q['author_name']);
2275                         if ( $q['author'] )
2276                                 $q['author'] = $q['author']->ID;
2277                         $whichauthor .= " AND ($wpdb->posts.post_author = " . absint($q['author']) . ')';
2278                 }
2279
2280                 // MIME-Type stuff for attachment browsing
2281
2282                 if ( isset($q['post_mime_type']) && '' != $q['post_mime_type'] ) {
2283                         $table_alias = $post_status_join ? $wpdb->posts : '';
2284                         $whichmimetype = wp_post_mime_type_where($q['post_mime_type'], $table_alias);
2285                 }
2286
2287                 $where .= $search . $whichauthor . $whichmimetype;
2288
2289                 if ( empty($q['order']) || ((strtoupper($q['order']) != 'ASC') && (strtoupper($q['order']) != 'DESC')) )
2290                         $q['order'] = 'DESC';
2291
2292                 // Order by
2293                 if ( empty($q['orderby']) ) {
2294                         $q['orderby'] = "$wpdb->posts.post_date " . $q['order'];
2295                 } elseif ( 'none' == $q['orderby'] ) {
2296                         $q['orderby'] = '';
2297                 } else {
2298                         // Used to filter values
2299                         $allowed_keys = array('author', 'date', 'title', 'modified', 'menu_order', 'parent', 'ID', 'rand', 'comment_count');
2300                         if ( !empty($q['meta_key']) ) {
2301                                 $allowed_keys[] = $q['meta_key'];
2302                                 $allowed_keys[] = 'meta_value';
2303                                 $allowed_keys[] = 'meta_value_num';
2304                         }
2305                         $q['orderby'] = urldecode($q['orderby']);
2306                         $q['orderby'] = addslashes_gpc($q['orderby']);
2307                         $orderby_array = explode(' ', $q['orderby']);
2308                         $q['orderby'] = '';
2309
2310                         foreach ( $orderby_array as $i => $orderby ) {
2311                                 // Only allow certain values for safety
2312                                 if ( ! in_array($orderby, $allowed_keys) )
2313                                         continue;
2314
2315                                 switch ( $orderby ) {
2316                                         case 'menu_order':
2317                                                 break;
2318                                         case 'ID':
2319                                                 $orderby = "$wpdb->posts.ID";
2320                                                 break;
2321                                         case 'rand':
2322                                                 $orderby = 'RAND()';
2323                                                 break;
2324                                         case $q['meta_key']:
2325                                         case 'meta_value':
2326                                                 $orderby = "$wpdb->postmeta.meta_value";
2327                                                 break;
2328                                         case 'meta_value_num':
2329                                                 $orderby = "$wpdb->postmeta.meta_value+0";
2330                                                 break;
2331                                         case 'comment_count':
2332                                                 $orderby = "$wpdb->posts.comment_count";
2333                                                 break;
2334                                         default:
2335                                                 $orderby = "$wpdb->posts.post_" . $orderby;
2336                                 }
2337
2338                                 $q['orderby'] .= (($i == 0) ? '' : ',') . $orderby;
2339                         }
2340
2341                         // append ASC or DESC at the end
2342                         if ( !empty($q['orderby']))
2343                                 $q['orderby'] .= " {$q['order']}";
2344
2345                         if ( empty($q['orderby']) )
2346                                 $q['orderby'] = "$wpdb->posts.post_date ".$q['order'];
2347                 }
2348
2349                 if ( is_array( $post_type ) ) {
2350                         $post_type_cap = 'multiple_post_type';
2351                 } else {
2352                         $post_type_object = get_post_type_object( $post_type );
2353                         if ( empty( $post_type_object ) )
2354                                 $post_type_cap = $post_type;
2355                 }
2356
2357                 $exclude_post_types = '';
2358                 $in_search_post_types = get_post_types( array('exclude_from_search' => false) );
2359                 if ( ! empty( $in_search_post_types ) )
2360                         $exclude_post_types .= $wpdb->prepare(" AND $wpdb->posts.post_type IN ('" . join("', '", $in_search_post_types ) . "')");
2361
2362                 if ( 'any' == $post_type ) {
2363                         $where .= $exclude_post_types;
2364                 } elseif ( !empty( $post_type ) && is_array( $post_type ) ) {
2365                         $where .= " AND $wpdb->posts.post_type IN ('" . join("', '", $post_type) . "')";
2366                 } elseif ( ! empty( $post_type ) ) {
2367                         $where .= " AND $wpdb->posts.post_type = '$post_type'";
2368                         $post_type_object = get_post_type_object ( $post_type );
2369                 } elseif ( $this->is_attachment ) {
2370                         $where .= " AND $wpdb->posts.post_type = 'attachment'";
2371                         $post_type_object = get_post_type_object ( 'attachment' );
2372                 } elseif ( $this->is_page ) {
2373                         $where .= " AND $wpdb->posts.post_type = 'page'";
2374                         $post_type_object = get_post_type_object ( 'page' );
2375                 } else {
2376                         $where .= " AND $wpdb->posts.post_type = 'post'";
2377                         $post_type_object = get_post_type_object ( 'post' );
2378                 }
2379
2380                 if ( ! empty( $post_type_object ) ) {
2381                         $edit_cap = $post_type_object->cap->edit_post;
2382                         $read_cap = $post_type_object->cap->read_post;
2383                         $edit_others_cap = $post_type_object->cap->edit_others_posts;
2384                         $read_private_cap = $post_type_object->cap->read_private_posts;
2385                 } else {
2386                         $edit_cap = 'edit_' . $post_type_cap;
2387                         $read_cap = 'read_' . $post_type_cap;
2388                         $edit_others_cap = 'edit_others_' . $post_type_cap . 's';
2389                         $read_private_cap = 'read_private_' . $post_type_cap . 's';
2390                 }
2391
2392                 if ( isset($q['post_status']) && '' != $q['post_status'] ) {
2393                         $statuswheres = array();
2394                         $q_status = explode(',', $q['post_status']);
2395                         $r_status = array();
2396                         $p_status = array();
2397                         $e_status = array();
2398                         if ( $q['post_status'] == 'any' ) {
2399                                 foreach ( get_post_stati( array('exclude_from_search' => true) ) as $status )
2400                                         $e_status[] = "$wpdb->posts.post_status <> '$status'";
2401                         } else {
2402                                 foreach ( get_post_stati() as $status ) {
2403                                         if ( in_array( $status, $q_status ) ) {
2404                                                 if ( 'private' == $status )
2405                                                         $p_status[] = "$wpdb->posts.post_status = '$status'";
2406                                                 else
2407                                                         $r_status[] = "$wpdb->posts.post_status = '$status'";
2408                                         }
2409                                 }
2410                         }
2411
2412                         if ( empty($q['perm'] ) || 'readable' != $q['perm'] ) {
2413                                 $r_status = array_merge($r_status, $p_status);
2414                                 unset($p_status);
2415                         }
2416
2417                         if ( !empty($e_status) ) {
2418                                 $statuswheres[] = "(" . join( ' AND ', $e_status ) . ")";
2419                         }
2420                         if ( !empty($r_status) ) {
2421                                 if ( !empty($q['perm'] ) && 'editable' == $q['perm'] && !current_user_can($edit_others_cap) )
2422                                         $statuswheres[] = "($wpdb->posts.post_author = $user_ID " .  "AND (" . join( ' OR ', $r_status ) . "))";
2423                                 else
2424                                         $statuswheres[] = "(" . join( ' OR ', $r_status ) . ")";
2425                         }
2426                         if ( !empty($p_status) ) {
2427                                 if ( !empty($q['perm'] ) && 'readable' == $q['perm'] && !current_user_can($read_private_cap) )
2428                                         $statuswheres[] = "($wpdb->posts.post_author = $user_ID " .  "AND (" . join( ' OR ', $p_status ) . "))";
2429                                 else
2430                                         $statuswheres[] = "(" . join( ' OR ', $p_status ) . ")";
2431                         }
2432                         if ( $post_status_join ) {
2433                                 $join .= " LEFT JOIN $wpdb->posts AS p2 ON ($wpdb->posts.post_parent = p2.ID) ";
2434                                 foreach ( $statuswheres as $index => $statuswhere )
2435                                         $statuswheres[$index] = "($statuswhere OR ($wpdb->posts.post_status = 'inherit' AND " . str_replace($wpdb->posts, 'p2', $statuswhere) . "))";
2436                         }
2437                         foreach ( $statuswheres as $statuswhere )
2438                                 $where .= " AND $statuswhere";
2439                 } elseif ( !$this->is_singular ) {
2440                         $where .= " AND ($wpdb->posts.post_status = 'publish'";
2441
2442                         // Add public states.
2443                         $public_states = get_post_stati( array('public' => true) );
2444                         foreach ( (array) $public_states as $state ) {
2445                                 if ( 'publish' == $state ) // Publish is hard-coded above.
2446                                         continue;
2447                                 $where .= " OR $wpdb->posts.post_status = '$state'";
2448                         }
2449
2450                         if ( is_admin() ) {
2451                                 // Add protected states that should show in the admin all list.
2452                                 $admin_all_states = get_post_stati( array('protected' => true, 'show_in_admin_all_list' => true) );
2453                                 foreach ( (array) $admin_all_states as $state )
2454                                         $where .= " OR $wpdb->posts.post_status = '$state'";
2455                         }
2456
2457                         if ( is_user_logged_in() ) {
2458                                 // Add private states that are limited to viewing by the author of a post or someone who has caps to read private states.
2459                                 $private_states = get_post_stati( array('private' => true) );
2460                                 foreach ( (array) $private_states as $state )
2461                                         $where .= current_user_can( $read_private_cap ) ? " OR $wpdb->posts.post_status = '$state'" : " OR $wpdb->posts.post_author = $user_ID AND $wpdb->posts.post_status = '$state'";
2462                         }
2463
2464                         $where .= ')';
2465                 }
2466
2467                 // Parse the meta query again if query vars have changed.
2468                 if ( $this->query_vars_changed ) {
2469                         $meta_query_hash = md5( serialize( $q['meta_query'] ) );
2470                         $_meta_query = $q['meta_query'];
2471                         unset( $q['meta_query'] );
2472                         _parse_meta_query( $q );
2473                         if ( md5( serialize( $q['meta_query'] ) ) != $meta_query_hash && is_array( $_meta_query ) )
2474                                 $q['meta_query'] = array_merge( $_meta_query, $q['meta_query'] );
2475                 }
2476
2477                 if ( !empty( $q['meta_query'] ) ) {
2478                         $clauses = call_user_func_array( '_get_meta_sql', array( $q['meta_query'], 'post', $wpdb->posts, 'ID', &$this) );
2479                         $join .= $clauses['join'];
2480                         $where .= $clauses['where'];
2481                 }
2482
2483                 // Apply filters on where and join prior to paging so that any
2484                 // manipulations to them are reflected in the paging by day queries.
2485                 if ( !$q['suppress_filters'] ) {
2486                         $where = apply_filters_ref_array('posts_where', array( $where, &$this ) );
2487                         $join = apply_filters_ref_array('posts_join', array( $join, &$this ) );
2488                 }
2489
2490                 // Paging
2491                 if ( empty($q['nopaging']) && !$this->is_singular ) {
2492                         $page = absint($q['paged']);
2493                         if ( empty($page) )
2494                                 $page = 1;
2495
2496                         if ( empty($q['offset']) ) {
2497                                 $pgstrt = '';
2498                                 $pgstrt = ($page - 1) * $q['posts_per_page'] . ', ';
2499                                 $limits = 'LIMIT ' . $pgstrt . $q['posts_per_page'];
2500                         } else { // we're ignoring $page and using 'offset'
2501                                 $q['offset'] = absint($q['offset']);
2502                                 $pgstrt = $q['offset'] . ', ';
2503                                 $limits = 'LIMIT ' . $pgstrt . $q['posts_per_page'];
2504                         }
2505                 }
2506
2507                 // Comments feeds
2508                 if ( $this->is_comment_feed && ( $this->is_archive || $this->is_search || !$this->is_singular ) ) {
2509                         if ( $this->is_archive || $this->is_search ) {
2510                                 $cjoin = "JOIN $wpdb->posts ON ($wpdb->comments.comment_post_ID = $wpdb->posts.ID) $join ";
2511                                 $cwhere = "WHERE comment_approved = '1' $where";
2512                                 $cgroupby = "$wpdb->comments.comment_id";
2513                         } else { // Other non singular e.g. front
2514                                 $cjoin = "JOIN $wpdb->posts ON ( $wpdb->comments.comment_post_ID = $wpdb->posts.ID )";
2515                                 $cwhere = "WHERE post_status = 'publish' AND comment_approved = '1'";
2516                                 $cgroupby = '';
2517                         }
2518
2519                         if ( !$q['suppress_filters'] ) {
2520                                 $cjoin = apply_filters_ref_array('comment_feed_join', array( $cjoin, &$this ) );
2521                                 $cwhere = apply_filters_ref_array('comment_feed_where', array( $cwhere, &$this ) );
2522                                 $cgroupby = apply_filters_ref_array('comment_feed_groupby', array( $cgroupby, &$this ) );
2523                                 $corderby = apply_filters_ref_array('comment_feed_orderby', array( 'comment_date_gmt DESC', &$this ) );
2524                                 $climits = apply_filters_ref_array('comment_feed_limits', array( 'LIMIT ' . get_option('posts_per_rss'), &$this ) );
2525                         }
2526                         $cgroupby = ( ! empty( $cgroupby ) ) ? 'GROUP BY ' . $cgroupby : '';
2527                         $corderby = ( ! empty( $corderby ) ) ? 'ORDER BY ' . $corderby : '';
2528
2529                         $this->comments = (array) $wpdb->get_results("SELECT $distinct $wpdb->comments.* FROM $wpdb->comments $cjoin $cwhere $cgroupby $corderby $climits");
2530                         $this->comment_count = count($this->comments);
2531
2532                         $post_ids = array();
2533
2534                         foreach ( $this->comments as $comment )
2535                                 $post_ids[] = (int) $comment->comment_post_ID;
2536
2537                         $post_ids = join(',', $post_ids);
2538                         $join = '';
2539                         if ( $post_ids )
2540                                 $where = "AND $wpdb->posts.ID IN ($post_ids) ";
2541                         else
2542                                 $where = "AND 0";
2543                 }
2544
2545                 $orderby = $q['orderby'];
2546
2547                 $pieces = array( 'where', 'groupby', 'join', 'orderby', 'distinct', 'fields', 'limits' );
2548
2549                 // Apply post-paging filters on where and join.  Only plugins that
2550                 // manipulate paging queries should use these hooks.
2551                 if ( !$q['suppress_filters'] ) {
2552                         $where          = apply_filters_ref_array( 'posts_where_paged', array( $where, &$this ) );
2553                         $groupby        = apply_filters_ref_array( 'posts_groupby',             array( $groupby, &$this ) );
2554                         $join           = apply_filters_ref_array( 'posts_join_paged',  array( $join, &$this ) );
2555                         $orderby        = apply_filters_ref_array( 'posts_orderby',             array( $orderby, &$this ) );
2556                         $distinct       = apply_filters_ref_array( 'posts_distinct',    array( $distinct, &$this ) );
2557                         $limits         = apply_filters_ref_array( 'post_limits',               array( $limits, &$this ) );
2558                         $fields         = apply_filters_ref_array( 'posts_fields',              array( $fields, &$this ) );
2559
2560                         // Filter all clauses at once, for convenience
2561                         $clauses = (array) apply_filters_ref_array( 'posts_clauses', array( compact( $pieces ), &$this ) );
2562                         foreach ( $pieces as $piece )
2563                                 $$piece = isset( $clauses[ $piece ] ) ? $clauses[ $piece ] : '';
2564                 }
2565
2566                 // Announce current selection parameters.  For use by caching plugins.
2567                 do_action( 'posts_selection', $where . $groupby . $orderby . $limits . $join );
2568
2569                 // Filter again for the benefit of caching plugins.  Regular plugins should use the hooks above.
2570                 if ( !$q['suppress_filters'] ) {
2571                         $where          = apply_filters_ref_array( 'posts_where_request',               array( $where, &$this ) );
2572                         $groupby        = apply_filters_ref_array( 'posts_groupby_request',             array( $groupby, &$this ) );
2573                         $join           = apply_filters_ref_array( 'posts_join_request',                array( $join, &$this ) );
2574                         $orderby        = apply_filters_ref_array( 'posts_orderby_request',             array( $orderby, &$this ) );
2575                         $distinct       = apply_filters_ref_array( 'posts_distinct_request',    array( $distinct, &$this ) );
2576                         $fields         = apply_filters_ref_array( 'posts_fields_request',              array( $fields, &$this ) );
2577                         $limits         = apply_filters_ref_array( 'post_limits_request',               array( $limits, &$this ) );
2578
2579                         // Filter all clauses at once, for convenience
2580                         $clauses = (array) apply_filters_ref_array( 'posts_clauses_request', array( compact( $pieces ), &$this ) );
2581                         foreach ( $pieces as $piece )
2582                                 $$piece = isset( $clauses[ $piece ] ) ? $clauses[ $piece ] : '';
2583                 }
2584
2585                 if ( ! empty($groupby) )
2586                         $groupby = 'GROUP BY ' . $groupby;
2587                 if ( !empty( $orderby ) )
2588                         $orderby = 'ORDER BY ' . $orderby;
2589
2590                 $found_rows = '';
2591                 if ( !$q['no_found_rows'] && !empty($limits) )
2592                         $found_rows = 'SQL_CALC_FOUND_ROWS';
2593
2594                 $this->request = " SELECT $found_rows $distinct $fields FROM $wpdb->posts $join WHERE 1=1 $where $groupby $orderby $limits";
2595                 if ( !$q['suppress_filters'] )
2596                         $this->request = apply_filters_ref_array('posts_request', array( $this->request, &$this ) );
2597
2598                 if ( 'ids' == $q['fields'] ) {
2599                         $this->posts = $wpdb->get_col($this->request);
2600
2601                         return $this->posts;
2602                 }
2603
2604                 if ( 'id=>parent' == $q['fields'] ) {
2605                         $this->posts = $wpdb->get_results($this->request);
2606
2607                         $r = array();
2608                         foreach ( $this->posts as $post )
2609                                 $r[ $post->ID ] = $post->post_parent;
2610
2611                         return $r;
2612                 }
2613
2614                 $this->posts = $wpdb->get_results($this->request);
2615
2616                 // Raw results filter.  Prior to status checks.
2617                 if ( !$q['suppress_filters'] )
2618                         $this->posts = apply_filters_ref_array('posts_results', array( $this->posts, &$this ) );
2619
2620                 if ( !empty($this->posts) && $this->is_comment_feed && $this->is_singular ) {
2621                         $cjoin = apply_filters_ref_array('comment_feed_join', array( '', &$this ) );
2622                         $cwhere = apply_filters_ref_array('comment_feed_where', array( "WHERE comment_post_ID = '{$this->posts[0]->ID}' AND comment_approved = '1'", &$this ) );
2623                         $cgroupby = apply_filters_ref_array('comment_feed_groupby', array( '', &$this ) );
2624                         $cgroupby = ( ! empty( $cgroupby ) ) ? 'GROUP BY ' . $cgroupby : '';
2625                         $corderby = apply_filters_ref_array('comment_feed_orderby', array( 'comment_date_gmt DESC', &$this ) );
2626                         $corderby = ( ! empty( $corderby ) ) ? 'ORDER BY ' . $corderby : '';
2627                         $climits = apply_filters_ref_array('comment_feed_limits', array( 'LIMIT ' . get_option('posts_per_rss'), &$this ) );
2628                         $comments_request = "SELECT $wpdb->comments.* FROM $wpdb->comments $cjoin $cwhere $cgroupby $corderby $climits";
2629                         $this->comments = $wpdb->get_results($comments_request);
2630                         $this->comment_count = count($this->comments);
2631                 }
2632
2633                 if ( !$q['no_found_rows'] && !empty($limits) ) {
2634                         $found_posts_query = apply_filters_ref_array( 'found_posts_query', array( 'SELECT FOUND_ROWS()', &$this ) );
2635                         $this->found_posts = $wpdb->get_var( $found_posts_query );
2636                         $this->found_posts = apply_filters_ref_array( 'found_posts', array( $this->found_posts, &$this ) );
2637                         $this->max_num_pages = ceil($this->found_posts / $q['posts_per_page']);
2638                 }
2639
2640                 // Check post status to determine if post should be displayed.
2641                 if ( !empty($this->posts) && ($this->is_single || $this->is_page) ) {
2642                         $status = get_post_status($this->posts[0]);
2643                         $post_status_obj = get_post_status_object($status);
2644                         //$type = get_post_type($this->posts[0]);
2645                         if ( !$post_status_obj->public ) {
2646                                 if ( ! is_user_logged_in() ) {
2647                                         // User must be logged in to view unpublished posts.
2648                                         $this->posts = array();
2649                                 } else {
2650                                         if  ( $post_status_obj->protected ) {
2651                                                 // User must have edit permissions on the draft to preview.
2652                                                 if ( ! current_user_can($edit_cap, $this->posts[0]->ID) ) {
2653                                                         $this->posts = array();
2654                                                 } else {
2655                                                         $this->is_preview = true;
2656                                                         if ( 'future' != $status )
2657                                                                 $this->posts[0]->post_date = current_time('mysql');
2658                                                 }
2659                                         } elseif ( $post_status_obj->private ) {
2660                                                 if ( ! current_user_can($read_cap, $this->posts[0]->ID) )
2661                                                         $this->posts = array();
2662                                         } else {
2663                                                 $this->posts = array();
2664                                         }
2665                                 }
2666                         }
2667
2668                         if ( $this->is_preview && current_user_can( $edit_cap, $this->posts[0]->ID ) )
2669                                 $this->posts[0] = apply_filters_ref_array('the_preview', array( $this->posts[0], &$this ));
2670                 }
2671
2672                 // Put sticky posts at the top of the posts array
2673                 $sticky_posts = get_option('sticky_posts');
2674                 if ( $this->is_home && $page <= 1 && is_array($sticky_posts) && !empty($sticky_posts) && !$q['ignore_sticky_posts'] ) {
2675                         $num_posts = count($this->posts);
2676                         $sticky_offset = 0;
2677                         // Loop over posts and relocate stickies to the front.
2678                         for ( $i = 0; $i < $num_posts; $i++ ) {
2679                                 if ( in_array($this->posts[$i]->ID, $sticky_posts) ) {
2680                                         $sticky_post = $this->posts[$i];
2681                                         // Remove sticky from current position
2682                                         array_splice($this->posts, $i, 1);
2683                                         // Move to front, after other stickies
2684                                         array_splice($this->posts, $sticky_offset, 0, array($sticky_post));
2685                                         // Increment the sticky offset.  The next sticky will be placed at this offset.
2686                                         $sticky_offset++;
2687                                         // Remove post from sticky posts array
2688                                         $offset = array_search($sticky_post->ID, $sticky_posts);
2689                                         unset( $sticky_posts[$offset] );
2690                                 }
2691                         }
2692
2693                         // If any posts have been excluded specifically, Ignore those that are sticky.
2694                         if ( !empty($sticky_posts) && !empty($q['post__not_in']) )
2695                                 $sticky_posts = array_diff($sticky_posts, $q['post__not_in']);
2696
2697                         // Fetch sticky posts that weren't in the query results
2698                         if ( !empty($sticky_posts) ) {
2699                                 $stickies__in = implode(',', array_map( 'absint', $sticky_posts ));
2700                                 // honor post type(s) if not set to any
2701                                 $stickies_where = '';
2702                                 if ( 'any' != $post_type && '' != $post_type ) {
2703                                         if ( is_array( $post_type ) ) {
2704                                                 $post_types = join( "', '", $post_type );
2705                                         } else {
2706                                                 $post_types = $post_type;
2707                                         }
2708                                         $stickies_where = "AND $wpdb->posts.post_type IN ('" . $post_types . "')";
2709                                 }
2710
2711                                 $stickies = $wpdb->get_results( "SELECT * FROM $wpdb->posts WHERE $wpdb->posts.ID IN ($stickies__in) $stickies_where" );
2712                                 foreach ( $stickies as $sticky_post ) {
2713                                         // Ignore sticky posts the current user cannot read or are not published.
2714                                         if ( 'publish' != $sticky_post->post_status )
2715                                                 continue;
2716                                         array_splice($this->posts, $sticky_offset, 0, array($sticky_post));
2717                                         $sticky_offset++;
2718                                 }
2719                         }
2720                 }
2721
2722                 if ( !$q['suppress_filters'] )
2723                         $this->posts = apply_filters_ref_array('the_posts', array( $this->posts, &$this ) );
2724
2725                 $this->post_count = count($this->posts);
2726
2727                 // Sanitize before caching so it'll only get done once
2728                 for ( $i = 0; $i < $this->post_count; $i++ ) {
2729                         $this->posts[$i] = sanitize_post($this->posts[$i], 'raw');
2730                 }
2731
2732                 if ( $q['cache_results'] )
2733                         update_post_caches($this->posts, $post_type, $q['update_post_term_cache'], $q['update_post_meta_cache']);
2734
2735                 if ( $this->post_count > 0 ) {
2736                         $this->post = $this->posts[0];
2737                 }
2738
2739                 return $this->posts;
2740         }
2741
2742         /**
2743          * Set up the next post and iterate current post index.
2744          *
2745          * @since 1.5.0
2746          * @access public
2747          *
2748          * @return object Next post.
2749          */
2750         function next_post() {
2751
2752                 $this->current_post++;
2753
2754                 $this->post = $this->posts[$this->current_post];
2755                 return $this->post;
2756         }
2757
2758         /**
2759          * Sets up the current post.
2760          *
2761          * Retrieves the next post, sets up the post, sets the 'in the loop'
2762          * property to true.
2763          *
2764          * @since 1.5.0
2765          * @access public
2766          * @uses $post
2767          * @uses do_action_ref_array() Calls 'loop_start' if loop has just started
2768          */
2769         function the_post() {
2770                 global $post;
2771                 $this->in_the_loop = true;
2772
2773                 if ( $this->current_post == -1 ) // loop has just started
2774                         do_action_ref_array('loop_start', array(&$this));
2775
2776                 $post = $this->next_post();
2777                 setup_postdata($post);
2778         }
2779
2780         /**
2781          * Whether there are more posts available in the loop.
2782          *
2783          * Calls action 'loop_end', when the loop is complete.
2784          *
2785          * @since 1.5.0
2786          * @access public
2787          * @uses do_action_ref_array() Calls 'loop_end' if loop is ended
2788          *
2789          * @return bool True if posts are available, false if end of loop.
2790          */
2791         function have_posts() {
2792                 if ( $this->current_post + 1 < $this->post_count ) {
2793                         return true;
2794                 } elseif ( $this->current_post + 1 == $this->post_count && $this->post_count > 0 ) {
2795                         do_action_ref_array('loop_end', array(&$this));
2796                         // Do some cleaning up after the loop
2797                         $this->rewind_posts();
2798                 }
2799
2800                 $this->in_the_loop = false;
2801                 return false;
2802         }
2803
2804         /**
2805          * Rewind the posts and reset post index.
2806          *
2807          * @since 1.5.0
2808          * @access public
2809          */
2810         function rewind_posts() {
2811                 $this->current_post = -1;
2812                 if ( $this->post_count > 0 ) {
2813                         $this->post = $this->posts[0];
2814                 }
2815         }
2816
2817         /**
2818          * Iterate current comment index and return comment object.
2819          *
2820          * @since 2.2.0
2821          * @access public
2822          *
2823          * @return object Comment object.
2824          */
2825         function next_comment() {
2826                 $this->current_comment++;
2827
2828                 $this->comment = $this->comments[$this->current_comment];
2829                 return $this->comment;
2830         }
2831
2832         /**
2833          * Sets up the current comment.
2834          *
2835          * @since 2.2.0
2836          * @access public
2837          * @global object $comment Current comment.
2838          * @uses do_action() Calls 'comment_loop_start' hook when first comment is processed.
2839          */
2840         function the_comment() {
2841                 global $comment;
2842
2843                 $comment = $this->next_comment();
2844
2845                 if ( $this->current_comment == 0 ) {
2846                         do_action('comment_loop_start');
2847                 }
2848         }
2849
2850         /**
2851          * Whether there are more comments available.
2852          *
2853          * Automatically rewinds comments when finished.
2854          *
2855          * @since 2.2.0
2856          * @access public
2857          *
2858          * @return bool True, if more comments. False, if no more posts.
2859          */
2860         function have_comments() {
2861                 if ( $this->current_comment + 1 < $this->comment_count ) {
2862                         return true;
2863                 } elseif ( $this->current_comment + 1 == $this->comment_count ) {
2864                         $this->rewind_comments();
2865                 }
2866
2867                 return false;
2868         }
2869
2870         /**
2871          * Rewind the comments, resets the comment index and comment to first.
2872          *
2873          * @since 2.2.0
2874          * @access public
2875          */
2876         function rewind_comments() {
2877                 $this->current_comment = -1;
2878                 if ( $this->comment_count > 0 ) {
2879                         $this->comment = $this->comments[0];
2880                 }
2881         }
2882
2883         /**
2884          * Sets up the WordPress query by parsing query string.
2885          *
2886          * @since 1.5.0
2887          * @access public
2888          *
2889          * @param string $query URL query string.
2890          * @return array List of posts.
2891          */
2892         function &query( $query ) {
2893                 $this->init();
2894                 $this->query = $this->query_vars = wp_parse_args( $query );
2895                 return $this->get_posts();
2896         }
2897
2898         /**
2899          * Retrieve queried object.
2900          *
2901          * If queried object is not set, then the queried object will be set from
2902          * the category, tag, taxonomy, posts page, single post, page, or author
2903          * query variable. After it is set up, it will be returned.
2904          *
2905          * @since 1.5.0
2906          * @access public
2907          *
2908          * @return object
2909          */
2910         function get_queried_object() {
2911                 if ( isset($this->queried_object) )
2912                         return $this->queried_object;
2913
2914                 $this->queried_object = NULL;
2915                 $this->queried_object_id = 0;
2916
2917                 if ( $this->is_category || $this->is_tag || $this->is_tax ) {
2918                         $tax_query_in_and = wp_list_filter( $this->tax_query->queries, array( 'operator' => 'NOT IN' ), 'NOT' );
2919
2920                         $query = reset( $tax_query_in_and );
2921
2922                         if ( 'term_id' == $query['field'] )
2923                                 $term = get_term( reset( $query['terms'] ), $query['taxonomy'] );
2924                         else
2925                                 $term = get_term_by( $query['field'], reset( $query['terms'] ), $query['taxonomy'] );
2926
2927                         if ( $term && ! is_wp_error($term) )  {
2928                                 $this->queried_object = $term;
2929                                 $this->queried_object_id = (int) $term->term_id;
2930
2931                                 if ( $this->is_category )
2932                                         _make_cat_compat( $this->queried_object );
2933                         }
2934                 } elseif ( $this->is_post_type_archive ) {
2935                         $this->queried_object = get_post_type_object( $this->get('post_type') );
2936                 } elseif ( $this->is_posts_page ) {
2937                         $page_for_posts = get_option('page_for_posts');
2938                         $this->queried_object = & get_page( $page_for_posts );
2939                         $this->queried_object_id = (int) $this->queried_object->ID;
2940                 } elseif ( $this->is_singular && !is_null($this->post) ) {
2941                         $this->queried_object = $this->post;
2942                         $this->queried_object_id = (int) $this->post->ID;
2943                 } elseif ( $this->is_author ) {
2944                         $this->queried_object_id = (int) $this->get('author');
2945                         $this->queried_object = get_userdata( $this->queried_object_id );
2946                 }
2947
2948                 return $this->queried_object;
2949         }
2950
2951         /**
2952          * Retrieve ID of the current queried object.
2953          *
2954          * @since 1.5.0
2955          * @access public
2956          *
2957          * @return int
2958          */
2959         function get_queried_object_id() {
2960                 $this->get_queried_object();
2961
2962                 if ( isset($this->queried_object_id) ) {
2963                         return $this->queried_object_id;
2964                 }
2965
2966                 return 0;
2967         }
2968
2969         /**
2970          * PHP4 type constructor.
2971          *
2972          * Sets up the WordPress query, if parameter is not empty.
2973          *
2974          * @since 1.5.0
2975          * @access public
2976          *
2977          * @param string $query URL query string.
2978          * @return WP_Query
2979          */
2980         function WP_Query($query = '') {
2981                 if ( ! empty($query) ) {
2982                         $this->query($query);
2983                 }
2984         }
2985
2986         /**
2987          * Is the query for an archive page?
2988          *
2989          * Month, Year, Category, Author, Post Type archive...
2990          *
2991          * @since 3.1.0
2992          *
2993          * @return bool
2994          */
2995         function is_archive() {
2996                 return (bool) $this->is_archive;
2997         }
2998
2999         /**
3000          * Is the query for a post type archive page?
3001          *
3002          * @since 3.1.0
3003          *
3004          * @param mixed $post_types Optional. Post type or array of posts types to check against.
3005          * @return bool
3006          */
3007         function is_post_type_archive( $post_types = '' ) {
3008                 if ( empty( $post_types ) || !$this->is_post_type_archive )
3009                         return (bool) $this->is_post_type_archive;
3010
3011                 $post_type_object = $this->get_queried_object();
3012
3013                 return in_array( $post_type_object->name, (array) $post_types );
3014         }
3015
3016         /**
3017          * Is the query for an attachment page?
3018          *
3019          * @since 3.1.0
3020          *
3021          * @return bool
3022          */
3023         function is_attachment() {
3024                 return (bool) $this->is_attachment;
3025         }
3026
3027         /**
3028          * Is the query for an author archive page?
3029          *
3030          * If the $author parameter is specified, this function will additionally
3031          * check if the query is for one of the authors specified.
3032          *
3033          * @since 3.1.0
3034          *
3035          * @param mixed $author Optional. User ID, nickname, nicename, or array of User IDs, nicknames, and nicenames
3036          * @return bool
3037          */
3038         function is_author( $author = '' ) {
3039                 if ( !$this->is_author )
3040                         return false;
3041
3042                 if ( empty($author) )
3043                         return true;
3044
3045                 $author_obj = $this->get_queried_object();
3046
3047                 $author = (array) $author;
3048
3049                 if ( in_array( $author_obj->ID, $author ) )
3050                         return true;
3051                 elseif ( in_array( $author_obj->nickname, $author ) )
3052                         return true;
3053                 elseif ( in_array( $author_obj->user_nicename, $author ) )
3054                         return true;
3055
3056                 return false;
3057         }
3058
3059         /**
3060          * Is the query for a category archive page?
3061          *
3062          * If the $category parameter is specified, this function will additionally
3063          * check if the query is for one of the categories specified.
3064          *
3065          * @since 3.1.0
3066          *
3067          * @param mixed $category Optional. Category ID, name, slug, or array of Category IDs, names, and slugs.
3068          * @return bool
3069          */
3070         function is_category( $category = '' ) {
3071                 if ( !$this->is_category )
3072                         return false;
3073
3074                 if ( empty($category) )
3075                         return true;
3076
3077                 $cat_obj = $this->get_queried_object();
3078
3079                 $category = (array) $category;
3080
3081                 if ( in_array( $cat_obj->term_id, $category ) )
3082                         return true;
3083                 elseif ( in_array( $cat_obj->name, $category ) )
3084                         return true;
3085                 elseif ( in_array( $cat_obj->slug, $category ) )
3086                         return true;
3087
3088                 return false;
3089         }
3090
3091         /**
3092          * Is the query for a tag archive page?
3093          *
3094          * If the $tag parameter is specified, this function will additionally
3095          * check if the query is for one of the tags specified.
3096          *
3097          * @since 3.1.0
3098          *
3099          * @param mixed $slug Optional. Tag slug or array of slugs.
3100          * @return bool
3101          */
3102         function is_tag( $slug = '' ) {
3103                 if ( !$this->is_tag )
3104                         return false;
3105
3106                 if ( empty( $slug ) )
3107                         return true;
3108
3109                 $tag_obj = $this->get_queried_object();
3110
3111                 $slug = (array) $slug;
3112
3113                 if ( in_array( $tag_obj->slug, $slug ) )
3114                         return true;
3115
3116                 return false;
3117         }
3118
3119         /**
3120          * Is the query for a taxonomy archive page?
3121          *
3122          * If the $taxonomy parameter is specified, this function will additionally
3123          * check if the query is for that specific $taxonomy.
3124          *
3125          * If the $term parameter is specified in addition to the $taxonomy parameter,
3126          * this function will additionally check if the query is for one of the terms
3127          * specified.
3128          *
3129          * @since 3.1.0
3130          *
3131          * @param mixed $taxonomy Optional. Taxonomy slug or slugs.
3132          * @param mixed $term. Optional. Term ID, name, slug or array of Term IDs, names, and slugs.
3133          * @return bool
3134          */
3135         function is_tax( $taxonomy = '', $term = '' ) {
3136                 global $wp_taxonomies;
3137
3138                 if ( !$this->is_tax )
3139                         return false;
3140
3141                 if ( empty( $taxonomy ) )
3142                         return true;
3143
3144                 $queried_object = $this->get_queried_object();
3145                 $tax_array = array_intersect( array_keys( $wp_taxonomies ), (array) $taxonomy );
3146                 $term_array = (array) $term;
3147
3148                 if ( empty( $term ) ) // Only a Taxonomy provided
3149                         return isset( $queried_object->taxonomy ) && count( $tax_array ) && in_array( $queried_object->taxonomy, $tax_array );
3150
3151                 return isset( $queried_object->term_id ) &&
3152                         count( array_intersect(
3153                                 array( $queried_object->term_id, $queried_object->name, $queried_object->slug ),
3154                                 $term_array
3155                         ) );
3156         }
3157
3158         /**
3159          * Whether the current URL is within the comments popup window.
3160          *
3161          * @since 3.1.0
3162          *
3163          * @return bool
3164          */
3165         function is_comments_popup() {
3166                 return (bool) $this->is_comments_popup;
3167         }
3168
3169         /**
3170          * Is the query for a date archive?
3171          *
3172          * @since 3.1.0
3173          *
3174          * @return bool
3175          */
3176         function is_date() {
3177                 return (bool) $this->is_date;
3178         }
3179
3180
3181         /**
3182          * Is the query for a day archive?
3183          *
3184          * @since 3.1.0
3185          *
3186          * @return bool
3187          */
3188         function is_day() {
3189                 return (bool) $this->is_day;
3190         }
3191
3192         /**
3193          * Is the query for a feed?
3194          *
3195          * @since 3.1.0
3196          *
3197          * @param string|array $feeds Optional feed types to check.
3198          * @return bool
3199          */
3200         function is_feed( $feeds = '' ) {
3201                 if ( empty( $feeds ) || ! $this->is_feed )
3202                         return (bool) $this->is_feed;
3203                 $qv = $this->get( 'feed' );
3204                 if ( 'feed' == $qv )
3205                         $qv = get_default_feed();
3206                 return in_array( $qv, (array) $feeds );
3207         }
3208
3209         /**
3210          * Is the query for a comments feed?
3211          *
3212          * @since 3.1.0
3213          *
3214          * @return bool
3215          */
3216         function is_comment_feed() {
3217                 return (bool) $this->is_comment_feed;
3218         }
3219
3220         /**
3221          * Is the query for the front page of the site?
3222          *
3223          * This is for what is displayed at your site's main URL.
3224          *
3225          * Depends on the site's "Front page displays" Reading Settings 'show_on_front' and 'page_on_front'.
3226          *
3227          * If you set a static page for the front page of your site, this function will return
3228          * true when viewing that page.
3229          *
3230          * Otherwise the same as @see WP_Query::is_home()
3231          *
3232          * @since 3.1.0
3233          * @uses is_home()
3234          * @uses get_option()
3235          *
3236          * @return bool True, if front of site.
3237          */
3238         function is_front_page() {
3239                 // most likely case
3240                 if ( 'posts' == get_option( 'show_on_front') && $this->is_home() )
3241                         return true;
3242                 elseif ( 'page' == get_option( 'show_on_front') && get_option( 'page_on_front' ) && $this->is_page( get_option( 'page_on_front' ) ) )
3243                         return true;
3244                 else
3245                         return false;
3246         }
3247
3248         /**
3249          * Is the query for the blog homepage?
3250          *
3251          * This is the page which shows the time based blog content of your site.
3252          *
3253          * Depends on the site's "Front page displays" Reading Settings 'show_on_front' and 'page_for_posts'.
3254          *
3255          * If you set a static page for the front page of your site, this function will return
3256          * true only on the page you set as the "Posts page".
3257          *
3258          * @see WP_Query::is_front_page()
3259          *
3260          * @since 3.1.0
3261          *
3262          * @return bool True if blog view homepage.
3263          */
3264         function is_home() {
3265                 return (bool) $this->is_home;
3266         }
3267
3268         /**
3269          * Is the query for a month archive?
3270          *
3271          * @since 3.1.0
3272          *
3273          * @return bool
3274          */
3275         function is_month() {
3276                 return (bool) $this->is_month;
3277         }
3278
3279         /**
3280          * Is the query for a single page?
3281          *
3282          * If the $page parameter is specified, this function will additionally
3283          * check if the query is for one of the pages specified.
3284          *
3285          * @see WP_Query::is_single()
3286          * @see WP_Query::is_singular()
3287          *
3288          * @since 3.1.0
3289          *
3290          * @param mixed $page Page ID, title, slug, or array of such.
3291          * @return bool
3292          */
3293         function is_page( $page = '' ) {
3294                 if ( !$this->is_page )
3295                         return false;
3296
3297                 if ( empty( $page ) )
3298                         return true;
3299
3300                 $page_obj = $this->get_queried_object();
3301
3302                 $page = (array) $page;
3303
3304                 if ( in_array( $page_obj->ID, $page ) )
3305                         return true;
3306                 elseif ( in_array( $page_obj->post_title, $page ) )
3307                         return true;
3308                 else if ( in_array( $page_obj->post_name, $page ) )
3309                         return true;
3310
3311                 return false;
3312         }
3313
3314         /**
3315          * Is the query for paged result and not for the first page?
3316          *
3317          * @since 3.1.0
3318          *
3319          * @return bool
3320          */
3321         function is_paged() {
3322                 return (bool) $this->is_paged;
3323         }
3324
3325         /**
3326          * Is the query for a post or page preview?
3327          *
3328          * @since 3.1.0
3329          *
3330          * @return bool
3331          */
3332         function is_preview() {
3333                 return (bool) $this->is_preview;
3334         }
3335
3336         /**
3337          * Is the query for the robots file?
3338          *
3339          * @since 3.1.0
3340          *
3341          * @return bool
3342          */
3343         function is_robots() {
3344                 return (bool) $this->is_robots;
3345         }
3346
3347         /**
3348          * Is the query for a search?
3349          *
3350          * @since 3.1.0
3351          *
3352          * @return bool
3353          */
3354         function is_search() {
3355                 return (bool) $this->is_search;
3356         }
3357
3358         /**
3359          * Is the query for a single post?
3360          *
3361          * Works for any post type, except attachments and pages
3362          *
3363          * If the $post parameter is specified, this function will additionally
3364          * check if the query is for one of the Posts specified.
3365          *
3366          * @see WP_Query::is_page()
3367          * @see WP_Query::is_singular()
3368          *
3369          * @since 3.1.0
3370          *
3371          * @param mixed $post Post ID, title, slug, or array of such.
3372          * @return bool
3373          */
3374         function is_single( $post = '' ) {
3375                 if ( !$this->is_single )
3376                         return false;
3377
3378                 if ( empty($post) )
3379                         return true;
3380
3381                 $post_obj = $this->get_queried_object();
3382
3383                 $post = (array) $post;
3384
3385                 if ( in_array( $post_obj->ID, $post ) )
3386                         return true;
3387                 elseif ( in_array( $post_obj->post_title, $post ) )
3388                         return true;
3389                 elseif ( in_array( $post_obj->post_name, $post ) )
3390                         return true;
3391
3392                 return false;
3393         }
3394
3395         /**
3396          * Is the query for a single post of any post type (post, attachment, page, ... )?
3397          *
3398          * If the $post_types parameter is specified, this function will additionally
3399          * check if the query is for one of the Posts Types specified.
3400          *
3401          * @see WP_Query::is_page()
3402          * @see WP_Query::is_single()
3403          *
3404          * @since 3.1.0
3405          *
3406          * @param mixed $post_types Optional. Post Type or array of Post Types
3407          * @return bool
3408          */
3409         function is_singular( $post_types = '' ) {
3410                 if ( empty( $post_types ) || !$this->is_singular )
3411                         return (bool) $this->is_singular;
3412
3413                 $post_obj = $this->get_queried_object();
3414
3415                 return in_array( $post_obj->post_type, (array) $post_types );
3416         }
3417
3418         /**
3419          * Is the query for a specific time?
3420          *
3421          * @since 3.1.0
3422          *
3423          * @return bool
3424          */
3425         function is_time() {
3426                 return (bool) $this->is_time;
3427         }
3428
3429         /**
3430          * Is the query for a trackback endpoint call?
3431          *
3432          * @since 3.1.0
3433          *
3434          * @return bool
3435          */
3436         function is_trackback() {
3437                 return (bool) $this->is_trackback;
3438         }
3439
3440         /**
3441          * Is the query for a specific year?
3442          *
3443          * @since 3.1.0
3444          *
3445          * @return bool
3446          */
3447         function is_year() {
3448                 return (bool) $this->is_year;
3449         }
3450
3451         /**
3452          * Is the query a 404 (returns no results)?
3453          *
3454          * @since 3.1.0
3455          *
3456          * @return bool
3457          */
3458         function is_404() {
3459                 return (bool) $this->is_404;
3460         }
3461 }
3462
3463 /**
3464  * Redirect old slugs to the correct permalink.
3465  *
3466  * Attempts to find the current slug from the past slugs.
3467  *
3468  * @since 2.1.0
3469  * @uses $wp_query
3470  * @uses $wpdb
3471  *
3472  * @return null If no link is found, null is returned.
3473  */
3474 function wp_old_slug_redirect() {
3475         global $wp_query;
3476         if ( is_404() && '' != $wp_query->query_vars['name'] ) :
3477                 global $wpdb;
3478
3479                 // Guess the current post_type based on the query vars.
3480                 if ( get_query_var('post_type') )
3481                         $post_type = get_query_var('post_type');
3482                 elseif ( !empty($wp_query->query_vars['pagename']) )
3483                         $post_type = 'page';
3484                 else
3485                         $post_type = 'post';
3486
3487                 // Do not attempt redirect for hierarchical post types
3488                 if ( is_post_type_hierarchical( $post_type ) )
3489                         return;
3490
3491                 $query = $wpdb->prepare("SELECT post_id FROM $wpdb->postmeta, $wpdb->posts WHERE ID = post_id AND post_type = %s AND meta_key = '_wp_old_slug' AND meta_value = %s", $post_type, $wp_query->query_vars['name']);
3492
3493                 // if year, monthnum, or day have been specified, make our query more precise
3494                 // just in case there are multiple identical _wp_old_slug values
3495                 if ( '' != $wp_query->query_vars['year'] )
3496                         $query .= $wpdb->prepare(" AND YEAR(post_date) = %d", $wp_query->query_vars['year']);
3497                 if ( '' != $wp_query->query_vars['monthnum'] )
3498                         $query .= $wpdb->prepare(" AND MONTH(post_date) = %d", $wp_query->query_vars['monthnum']);
3499                 if ( '' != $wp_query->query_vars['day'] )
3500                         $query .= $wpdb->prepare(" AND DAYOFMONTH(post_date) = %d", $wp_query->query_vars['day']);
3501
3502                 $id = (int) $wpdb->get_var($query);
3503
3504                 if ( ! $id )
3505                         return;
3506
3507                 $link = get_permalink($id);
3508
3509                 if ( !$link )
3510                         return;
3511
3512                 wp_redirect($link, '301'); // Permanent redirect
3513                 exit;
3514         endif;
3515 }
3516
3517 /**
3518  * Set up global post data.
3519  *
3520  * @since 1.5.0
3521  *
3522  * @param object $post Post data.
3523  * @uses do_action_ref_array() Calls 'the_post'
3524  * @return bool True when finished.
3525  */
3526 function setup_postdata($post) {
3527         global $id, $authordata, $currentday, $currentmonth, $page, $pages, $multipage, $more, $numpages;
3528
3529         $id = (int) $post->ID;
3530
3531         $authordata = get_userdata($post->post_author);
3532
3533         $currentday = mysql2date('d.m.y', $post->post_date, false);
3534         $currentmonth = mysql2date('m', $post->post_date, false);
3535         $numpages = 1;
3536         $page = get_query_var('page');
3537         if ( !$page )
3538                 $page = 1;
3539         if ( is_single() || is_page() || is_feed() )
3540                 $more = 1;
3541         $content = $post->post_content;
3542         if ( strpos( $content, '<!--nextpage-->' ) ) {
3543                 if ( $page > 1 )
3544                         $more = 1;
3545                 $multipage = 1;
3546                 $content = str_replace("\n<!--nextpage-->\n", '<!--nextpage-->', $content);
3547                 $content = str_replace("\n<!--nextpage-->", '<!--nextpage-->', $content);
3548                 $content = str_replace("<!--nextpage-->\n", '<!--nextpage-->', $content);
3549                 $pages = explode('<!--nextpage-->', $content);
3550                 $numpages = count($pages);
3551         } else {
3552                 $pages = array( $post->post_content );
3553                 $multipage = 0;
3554         }
3555
3556         do_action_ref_array('the_post', array(&$post));
3557
3558         return true;
3559 }
3560 ?>