2006-03-13 02:44:32 +01:00
< ? php
2008-09-04 21:19:32 +02:00
/**
* WordPress Query API
*
* The query API attempts to get which part of WordPress to the user is on . It
* also provides functionality to getting URL query information .
*
* @ link http :// codex . wordpress . org / The_Loop More information on The Loop .
*
* @ package WordPress
* @ subpackage Query
2006-03-13 02:44:32 +01:00
*/
2006-11-19 08:56:05 +01:00
2008-09-04 21:19:32 +02:00
/**
* Retrieve variable in the WP_Query class .
*
* @ see WP_Query :: get ()
* @ since 1.5 . 0
* @ uses $wp_query
*
* @ param string $var The variable key to retrieve .
* @ return mixed
*/
2006-03-13 02:44:32 +01:00
function get_query_var ( $var ) {
global $wp_query ;
return $wp_query -> get ( $var );
}
2008-09-04 21:19:32 +02:00
/**
* Set query variable .
*
* @ see WP_Query :: set ()
* @ since 2.2 . 0
* @ uses $wp_query
*
* @ param string $var Query variable key .
* @ param mixed $value
* @ return null
*/
2007-02-24 08:33:29 +01:00
function set_query_var ( $var , $value ) {
global $wp_query ;
return $wp_query -> set ( $var , $value );
}
2008-09-04 21:19:32 +02:00
/**
* Setup The Loop with query parameters .
*
* This will override the current WordPress Loop and shouldn ' t be used more than
* once . This must not be used within the WordPress Loop .
*
* @ since 1.5 . 0
* @ uses $wp_query
*
* @ param string $query
* @ return array List of posts
*/
2006-03-13 02:44:32 +01:00
function & query_posts ( $query ) {
2006-11-09 07:50:58 +01:00
unset ( $GLOBALS [ 'wp_query' ]);
$GLOBALS [ 'wp_query' ] =& new WP_Query ();
return $GLOBALS [ 'wp_query' ] -> query ( $query );
2006-03-13 02:44:32 +01:00
}
2008-09-04 21:19:32 +02:00
/**
* Destroy the previous query and setup a new query .
*
* This should be used after { @ link query_posts ()} and before another { @ link
* query_posts ()} . This will remove obscure bugs that occur when the previous
* wp_query object is not destroyed properly before another is setup .
*
* @ since 2.3 . 0
* @ uses $wp_query
*/
2007-08-21 00:55:43 +02:00
function wp_reset_query () {
2009-05-20 18:05:23 +02:00
unset ( $GLOBALS [ 'wp_query' ]);
2007-08-21 00:55:43 +02:00
$GLOBALS [ 'wp_query' ] =& $GLOBALS [ 'wp_the_query' ];
2008-01-23 19:20:59 +01:00
global $wp_query ;
if ( ! empty ( $wp_query -> post ) ) {
2008-01-30 00:58:41 +01:00
$GLOBALS [ 'post' ] = $wp_query -> post ;
2008-01-23 19:20:59 +01:00
setup_postdata ( $wp_query -> post );
}
2007-08-21 00:55:43 +02:00
}
2006-03-13 02:44:32 +01:00
/*
* Query type checks .
*/
2008-09-04 21:19:32 +02:00
/**
* Is query requesting an archive page .
*
* @ since 1.5 . 0
* @ uses $wp_query
*
* @ return bool True if page is archive .
*/
2006-03-13 02:44:32 +01:00
function is_archive () {
global $wp_query ;
return $wp_query -> is_archive ;
}
2008-09-04 21:19:32 +02:00
/**
* Is query requesting an attachment page .
*
* @ since 2.0 . 0
* @ uses $wp_query
*
* @ return bool True if page is attachment .
*/
2006-03-13 02:44:32 +01:00
function is_attachment () {
global $wp_query ;
return $wp_query -> is_attachment ;
}
2008-09-04 21:19:32 +02:00
/**
* Is query requesting an author page .
*
* If the $author parameter is specified then the check will be expanded to
* include whether the queried author matches the one given in the parameter .
* You can match against integers and against strings .
*
* If matching against an integer , the ID should be used of the author for the
* test . If the $author is an ID and matches the author page user ID , then
* 'true' will be returned .
*
* If matching against strings , then the test will be matched against both the
* nickname and user nicename and will return true on success .
*
* @ since 1.5 . 0
* @ uses $wp_query
*
* @ param string | int $author Optional . Is current page this author .
* @ return bool True if page is author or $author ( if set ) .
*/
2006-03-13 02:44:32 +01:00
function is_author ( $author = '' ) {
global $wp_query ;
if ( ! $wp_query -> is_author )
return false ;
if ( empty ( $author ) )
return true ;
$author_obj = $wp_query -> get_queried_object ();
2008-02-13 20:02:08 +01:00
$author = ( array ) $author ;
if ( in_array ( $author_obj -> ID , $author ) )
2006-03-13 02:44:32 +01:00
return true ;
2008-02-13 20:02:08 +01:00
elseif ( in_array ( $author_obj -> nickname , $author ) )
2006-03-13 02:44:32 +01:00
return true ;
2008-02-13 20:02:08 +01:00
elseif ( in_array ( $author_obj -> user_nicename , $author ) )
2006-03-13 02:44:32 +01:00
return true ;
return false ;
}
2008-09-04 21:19:32 +02:00
/**
* Whether current page query contains a category name or given category name .
*
* The category list can contain category IDs , names , or category slugs . If any
* of them are part of the query , then it will return true .
*
* @ since 1.5 . 0
* @ uses $wp_query
*
2008-12-09 19:03:31 +01:00
* @ param string | array $category Optional .
2008-09-04 21:19:32 +02:00
* @ return bool
*/
2006-03-13 02:44:32 +01:00
function is_category ( $category = '' ) {
global $wp_query ;
if ( ! $wp_query -> is_category )
return false ;
if ( empty ( $category ) )
return true ;
$cat_obj = $wp_query -> get_queried_object ();
2008-02-13 20:02:08 +01:00
$category = ( array ) $category ;
if ( in_array ( $cat_obj -> term_id , $category ) )
2006-03-13 02:44:32 +01:00
return true ;
2008-02-13 20:02:08 +01:00
elseif ( in_array ( $cat_obj -> name , $category ) )
2006-03-13 02:44:32 +01:00
return true ;
2008-02-13 20:02:08 +01:00
elseif ( in_array ( $cat_obj -> slug , $category ) )
2006-03-13 02:44:32 +01:00
return true ;
return false ;
}
2008-09-04 21:19:32 +02:00
/**
* Whether the current page query has the given tag slug or contains tag .
*
* @ since 2.3 . 0
* @ uses $wp_query
*
* @ param string | array $slug Optional . Single tag or list of tags to check for .
* @ return bool
*/
2007-03-31 08:16:12 +02:00
function is_tag ( $slug = '' ) {
global $wp_query ;
2008-02-13 20:02:08 +01:00
2007-03-31 08:16:12 +02:00
if ( ! $wp_query -> is_tag )
return false ;
if ( empty ( $slug ) )
return true ;
2007-05-23 05:57:20 +02:00
$tag_obj = $wp_query -> get_queried_object ();
2008-02-13 20:02:08 +01:00
$slug = ( array ) $slug ;
if ( in_array ( $tag_obj -> slug , $slug ) )
2007-03-31 08:16:12 +02:00
return true ;
2008-02-13 20:02:08 +01:00
2007-03-31 08:16:12 +02:00
return false ;
}
2008-09-04 21:19:32 +02:00
/**
* Whether the current page query has the given taxonomy slug or contains taxonomy .
*
* @ since 2.5 . 0
* @ uses $wp_query
*
* @ param string | array $slug Optional . Slug or slugs to check in current query .
* @ return bool
*/
2008-03-23 18:02:11 +01:00
function is_tax ( $slug = '' ) {
global $wp_query ;
2008-08-09 07:36:14 +02:00
2008-03-23 18:02:11 +01:00
if ( ! $wp_query -> is_tax )
return false ;
if ( empty ( $slug ) )
return true ;
2009-12-02 19:00:32 +01:00
return in_array ( get_query_var ( 'taxonomy' ), ( array ) $slug );
2008-03-23 18:02:11 +01:00
}
2008-09-04 21:19:32 +02:00
/**
* Whether the current URL is within the comments popup window .
*
* @ since 1.5 . 0
* @ uses $wp_query
*
* @ return bool
*/
2006-03-13 02:44:32 +01:00
function is_comments_popup () {
global $wp_query ;
return $wp_query -> is_comments_popup ;
}
2008-09-04 21:19:32 +02:00
/**
* Whether current URL is based on a date .
*
* @ since 1.5 . 0
* @ uses $wp_query
*
* @ return bool
*/
2006-03-13 02:44:32 +01:00
function is_date () {
global $wp_query ;
return $wp_query -> is_date ;
}
2008-09-04 21:19:32 +02:00
/**
* Whether current blog URL contains a day .
*
* @ since 1.5 . 0
* @ uses $wp_query
*
* @ return bool
*/
2006-03-13 02:44:32 +01:00
function is_day () {
global $wp_query ;
return $wp_query -> is_day ;
}
2008-09-04 21:19:32 +02:00
/**
* Whether current page query is feed URL .
*
* @ since 1.5 . 0
* @ uses $wp_query
*
* @ return bool
*/
2006-03-13 02:44:32 +01:00
function is_feed () {
global $wp_query ;
return $wp_query -> is_feed ;
}
2009-12-22 15:04:14 +01:00
/**
* Whether current page query is comment feed URL .
*
* @ since 3.0 . 0
* @ uses $wp_query
*
* @ return bool
*/
function is_comment_feed () {
global $wp_query ;
return $wp_query -> is_comment_feed ;
}
2008-02-02 01:13:34 +01:00
/**
2008-09-04 21:19:32 +02:00
* Whether current page query is the front of the site .
2008-02-02 01:13:34 +01:00
*
2008-09-04 21:19:32 +02:00
* @ since 2.5 . 0
* @ uses is_home ()
* @ uses get_option ()
2008-02-02 01:13:34 +01:00
*
2008-09-04 21:19:32 +02:00
* @ return bool True , if front of site .
2008-02-02 01:13:34 +01:00
*/
2008-02-06 22:21:22 +01:00
function is_front_page () {
2008-02-05 07:47:27 +01:00
// most likely case
if ( 'posts' == get_option ( 'show_on_front' ) && is_home () )
return true ;
elseif ( 'page' == get_option ( 'show_on_front' ) && get_option ( 'page_on_front' ) && is_page ( get_option ( 'page_on_front' )) )
return true ;
else
return false ;
}
2008-02-02 01:13:34 +01:00
/**
2008-09-04 21:19:32 +02:00
* Whether current page view is the blog homepage .
2010-01-15 23:11:12 +01:00
*
2009-12-23 16:44:57 +01:00
* This is the page which is showing the time based blog content of your site
* so if you set a static page for the front page of your site then this will
2010-01-15 23:11:12 +01:00
* only be true on the page which you set as the " Posts page " in Reading Settings .
2008-02-02 01:13:34 +01:00
*
2008-09-04 21:19:32 +02:00
* @ since 1.5 . 0
* @ uses $wp_query
2008-02-02 01:13:34 +01:00
*
2008-09-04 21:19:32 +02:00
* @ return bool True if blog view homepage .
2008-02-02 01:13:34 +01:00
*/
2006-03-13 02:44:32 +01:00
function is_home () {
global $wp_query ;
return $wp_query -> is_home ;
}
2008-09-04 21:19:32 +02:00
/**
* Whether current page query contains a month .
*
* @ since 1.5 . 0
* @ uses $wp_query
*
* @ return bool
*/
2006-03-13 02:44:32 +01:00
function is_month () {
global $wp_query ;
return $wp_query -> is_month ;
}
2008-09-04 21:19:32 +02:00
/**
* Whether query is page or contains given page ( s ) .
*
* Calls the function without any parameters will only test whether the current
* query is of the page type . Either a list or a single item can be tested
* against for whether the query is a page and also is the value or one of the
* values in the page parameter .
*
* The parameter can contain the page ID , page title , or page name . The
* parameter can also be an array of those three values .
*
* @ since 1.5 . 0
* @ uses $wp_query
*
* @ param mixed $page Either page or list of pages to test against .
* @ return bool
*/
2006-03-13 02:44:32 +01:00
function is_page ( $page = '' ) {
global $wp_query ;
if ( ! $wp_query -> is_page )
return false ;
if ( empty ( $page ) )
return true ;
$page_obj = $wp_query -> get_queried_object ();
2007-12-17 07:21:43 +01:00
$page = ( array ) $page ;
2008-02-05 07:47:27 +01:00
2008-08-06 22:31:54 +02:00
if ( in_array ( $page_obj -> ID , $page ) )
2006-03-13 02:44:32 +01:00
return true ;
2007-12-17 07:21:43 +01:00
elseif ( in_array ( $page_obj -> post_title , $page ) )
2006-03-13 02:44:32 +01:00
return true ;
2007-12-17 07:21:43 +01:00
else if ( in_array ( $page_obj -> post_name , $page ) )
2006-03-13 02:44:32 +01:00
return true ;
return false ;
}
2008-09-04 21:19:32 +02:00
/**
* Whether query contains multiple pages for the results .
*
* @ since 1.5 . 0
* @ uses $wp_query
*
* @ return bool
*/
2006-03-13 02:44:32 +01:00
function is_paged () {
global $wp_query ;
return $wp_query -> is_paged ;
}
2008-09-04 21:19:32 +02:00
/**
* Whether the current page was created by a plugin .
*
* The plugin can set this by using the global $plugin_page and setting it to
* true .
*
* @ since 1.5 . 0
* @ global bool $plugin_page Used by plugins to tell the query that current is a plugin page .
*
* @ return bool
*/
2006-03-13 02:44:32 +01:00
function is_plugin_page () {
global $plugin_page ;
if ( isset ( $plugin_page ) )
return true ;
return false ;
}
2008-09-04 21:19:32 +02:00
/**
* Whether the current query is preview of post or page .
*
* @ since 2.0 . 0
* @ uses $wp_query
*
* @ return bool
*/
2006-03-13 02:44:32 +01:00
function is_preview () {
global $wp_query ;
return $wp_query -> is_preview ;
}
2008-09-04 21:19:32 +02:00
/**
* Whether the current query post is robots .
*
* @ since 2.1 . 0
* @ uses $wp_query
*
* @ return bool
*/
2006-05-23 00:06:06 +02:00
function is_robots () {
global $wp_query ;
return $wp_query -> is_robots ;
}
2008-09-04 21:19:32 +02:00
/**
* Whether current query is the result of a user search .
*
* @ since 1.5 . 0
* @ uses $wp_query
*
* @ return bool
*/
2006-03-13 02:44:32 +01:00
function is_search () {
global $wp_query ;
return $wp_query -> is_search ;
}
2008-09-04 21:19:32 +02:00
/**
* Whether the current page query is single page .
*
* The parameter can contain the post ID , post title , or post name . The
* parameter can also be an array of those three values .
*
* This applies to other post types , attachments , pages , posts . Just means that
* the current query has only a single object .
*
* @ since 1.5 . 0
* @ uses $wp_query
*
* @ param mixed $post Either post or list of posts to test against .
* @ return bool
*/
2006-03-13 02:44:32 +01:00
function is_single ( $post = '' ) {
global $wp_query ;
if ( ! $wp_query -> is_single )
return false ;
if ( empty ( $post ) )
return true ;
$post_obj = $wp_query -> get_queried_object ();
2008-02-13 20:02:08 +01:00
$post = ( array ) $post ;
if ( in_array ( $post_obj -> ID , $post ) )
2006-03-13 02:44:32 +01:00
return true ;
2008-02-13 20:02:08 +01:00
elseif ( in_array ( $post_obj -> post_title , $post ) )
2006-03-13 02:44:32 +01:00
return true ;
2008-02-13 20:02:08 +01:00
elseif ( in_array ( $post_obj -> post_name , $post ) )
2006-03-13 02:44:32 +01:00
return true ;
return false ;
}
2008-09-04 21:19:32 +02:00
/**
* Whether is single post , is a page , or is an attachment .
*
* @ since 1.5 . 0
* @ uses $wp_query
*
* @ return bool
*/
2006-08-30 05:33:39 +02:00
function is_singular () {
global $wp_query ;
2007-02-27 16:24:54 +01:00
return $wp_query -> is_singular ;
2006-08-30 05:33:39 +02:00
}
2008-09-04 21:19:32 +02:00
/**
* Whether the query contains a time .
*
* @ since 1.5 . 0
* @ uses $wp_query
*
* @ return bool
*/
2006-03-13 02:44:32 +01:00
function is_time () {
global $wp_query ;
return $wp_query -> is_time ;
}
2008-09-04 21:19:32 +02:00
/**
* Whether the query is a trackback .
*
* @ since 1.5 . 0
* @ uses $wp_query
*
* @ return bool
*/
2006-03-13 02:44:32 +01:00
function is_trackback () {
global $wp_query ;
return $wp_query -> is_trackback ;
}
2008-09-04 21:19:32 +02:00
/**
* Whether the query contains a year .
*
* @ since 1.5 . 0
* @ uses $wp_query
*
* @ return bool
*/
2006-03-13 02:44:32 +01:00
function is_year () {
global $wp_query ;
return $wp_query -> is_year ;
}
2008-09-04 21:19:32 +02:00
/**
* Whether current page query is a 404 and no results for WordPress query .
*
* @ since 1.5 . 0
* @ uses $wp_query
*
* @ return bool True , if nothing is found matching WordPress Query .
*/
2006-03-13 02:44:32 +01:00
function is_404 () {
global $wp_query ;
return $wp_query -> is_404 ;
}
/*
* The Loop . Post loop control .
*/
2006-11-19 08:56:05 +01:00
2008-09-04 21:19:32 +02:00
/**
* Whether current WordPress query has results to loop over .
*
* @ see WP_Query :: have_posts ()
* @ since 1.5 . 0
* @ uses $wp_query
*
* @ return bool
*/
2006-03-13 02:44:32 +01:00
function have_posts () {
global $wp_query ;
return $wp_query -> have_posts ();
}
2008-09-04 21:19:32 +02:00
/**
* Whether the caller is in the Loop .
*
* @ since 2.0 . 0
* @ uses $wp_query
*
* @ return bool True if caller is within loop , false if loop hasn ' t started or ended .
*/
2006-03-13 02:44:32 +01:00
function in_the_loop () {
global $wp_query ;
return $wp_query -> in_the_loop ;
}
2008-09-04 21:19:32 +02:00
/**
* Rewind the loop posts .
*
* @ see WP_Query :: rewind_posts ()
* @ since 1.5 . 0
* @ uses $wp_query
*
* @ return null
*/
2006-03-13 02:44:32 +01:00
function rewind_posts () {
global $wp_query ;
return $wp_query -> rewind_posts ();
}
2008-09-04 21:19:32 +02:00
/**
* Iterate the post index in the loop .
*
* @ see WP_Query :: the_post ()
* @ since 1.5 . 0
* @ uses $wp_query
*/
2006-03-13 02:44:32 +01:00
function the_post () {
global $wp_query ;
$wp_query -> the_post ();
}
2007-02-24 08:33:29 +01:00
/*
2007-09-04 01:32:58 +02:00
* Comments loop .
*/
2007-02-24 08:33:29 +01:00
2008-09-04 21:19:32 +02:00
/**
* Whether there are comments to loop over .
*
* @ see WP_Query :: have_comments ()
* @ since 2.2 . 0
* @ uses $wp_query
*
* @ return bool
*/
2007-09-04 01:32:58 +02:00
function have_comments () {
global $wp_query ;
return $wp_query -> have_comments ();
}
2007-02-24 08:33:29 +01:00
2008-09-04 21:19:32 +02:00
/**
* Iterate comment index in the comment loop .
*
* @ see WP_Query :: the_comment ()
* @ since 2.2 . 0
* @ uses $wp_query
*
* @ return object
*/
2007-09-04 01:32:58 +02:00
function the_comment () {
global $wp_query ;
return $wp_query -> the_comment ();
}
2007-02-24 08:33:29 +01:00
2006-03-13 02:44:32 +01:00
/*
* WP_Query
*/
2008-09-04 21:19:32 +02:00
/**
* The WordPress Query class .
*
* @ link http :// codex . wordpress . org / Function_Reference / WP_Query Codex page .
*
* @ since 1.5 . 0
*/
2006-03-13 02:44:32 +01:00
class WP_Query {
2008-09-04 21:19:32 +02:00
/**
* Query string
*
* @ since 1.5 . 0
* @ access public
* @ var string
*/
2006-03-13 02:44:32 +01:00
var $query ;
2008-09-04 21:19:32 +02:00
/**
* Query search variables set by the user .
*
* @ since 1.5 . 0
* @ access public
* @ var array
*/
2006-10-23 03:34:00 +02:00
var $query_vars = array ();
2008-09-04 21:19:32 +02:00
/**
* Holds the data for a single object that is queried .
*
* Holds the contents of a post , page , category , attachment .
*
* @ since 1.5 . 0
* @ access public
* @ var object | array
*/
2006-03-13 02:44:32 +01:00
var $queried_object ;
2008-09-04 21:19:32 +02:00
/**
* The ID of the queried object .
*
* @ since 1.5 . 0
* @ access public
* @ var int
*/
2006-03-13 02:44:32 +01:00
var $queried_object_id ;
2008-09-04 21:19:32 +02:00
/**
* Get post database query .
*
* @ since 2.0 . 1
* @ access public
* @ var string
*/
2006-03-13 02:44:32 +01:00
var $request ;
2008-09-04 21:19:32 +02:00
/**
* List of posts .
*
* @ since 1.5 . 0
* @ access public
* @ var array
*/
2006-03-13 02:44:32 +01:00
var $posts ;
2008-09-04 21:19:32 +02:00
/**
* The amount of posts for the current query .
*
* @ since 1.5 . 0
* @ access public
* @ var int
*/
2006-03-13 02:44:32 +01:00
var $post_count = 0 ;
2008-09-04 21:19:32 +02:00
/**
* Index of the current item in the loop .
*
* @ since 1.5 . 0
* @ access public
* @ var int
*/
2006-03-13 02:44:32 +01:00
var $current_post = - 1 ;
2008-09-04 21:19:32 +02:00
/**
* Whether the loop has started and the caller is in the loop .
*
* @ since 2.0 . 0
* @ access public
* @ var bool
*/
2006-03-13 02:44:32 +01:00
var $in_the_loop = false ;
2008-09-04 21:19:32 +02:00
/**
* The current post ID .
*
* @ since 1.5 . 0
* @ access public
* @ var int
*/
2006-03-13 02:44:32 +01:00
var $post ;
2007-02-27 16:24:54 +01:00
2008-09-04 21:19:32 +02:00
/**
* The list of comments for current post .
*
* @ since 2.2 . 0
* @ access public
* @ var array
*/
2007-02-24 08:33:29 +01:00
var $comments ;
2008-09-04 21:19:32 +02:00
/**
* The amount of comments for the posts .
*
* @ since 2.2 . 0
* @ access public
* @ var int
*/
2007-02-24 08:33:29 +01:00
var $comment_count = 0 ;
2008-09-04 21:19:32 +02:00
/**
* The index of the comment in the comment loop .
*
* @ since 2.2 . 0
* @ access public
* @ var int
*/
2007-02-24 08:33:29 +01:00
var $current_comment = - 1 ;
2008-09-04 21:19:32 +02:00
/**
* Current comment ID .
*
* @ since 2.2 . 0
* @ access public
* @ var int
*/
2007-02-24 08:33:29 +01:00
var $comment ;
2006-03-13 02:44:32 +01:00
2008-09-04 21:19:32 +02:00
/**
* Amount of posts if limit clause was not used .
*
* @ since 2.1 . 0
* @ access public
* @ var int
*/
2006-11-08 22:22:35 +01:00
var $found_posts = 0 ;
2008-09-04 21:19:32 +02:00
/**
* The amount of pages .
*
* @ since 2.1 . 0
* @ access public
* @ var int
*/
2006-11-08 22:22:35 +01:00
var $max_num_pages = 0 ;
2008-09-23 23:11:27 +02:00
/**
* The amount of comment pages .
*
* @ since 2.7 . 0
* @ access public
* @ var int
*/
var $max_num_comment_pages = 0 ;
2008-09-04 21:19:32 +02:00
/**
* Set if query is single post .
*
* @ since 1.5 . 0
* @ access public
* @ var bool
*/
2006-03-13 02:44:32 +01:00
var $is_single = false ;
2008-09-04 21:19:32 +02:00
/**
* Set if query is preview of blog .
*
* @ since 2.0 . 0
* @ access public
* @ var bool
*/
2006-03-13 02:44:32 +01:00
var $is_preview = false ;
2008-09-04 21:19:32 +02:00
/**
* Set if query returns a page .
*
* @ since 1.5 . 0
* @ access public
* @ var bool
*/
2006-03-13 02:44:32 +01:00
var $is_page = false ;
2008-09-04 21:19:32 +02:00
/**
* Set if query is an archive list .
*
* @ since 1.5 . 0
* @ access public
* @ var bool
*/
2006-03-13 02:44:32 +01:00
var $is_archive = false ;
2008-09-04 21:19:32 +02:00
/**
* Set if query is part of a date .
*
* @ since 1.5 . 0
* @ access public
* @ var bool
*/
2006-03-13 02:44:32 +01:00
var $is_date = false ;
2008-09-04 21:19:32 +02:00
/**
* Set if query contains a year .
*
* @ since 1.5 . 0
* @ access public
* @ var bool
*/
2006-03-13 02:44:32 +01:00
var $is_year = false ;
2008-09-04 21:19:32 +02:00
/**
* Set if query contains a month .
*
* @ since 1.5 . 0
* @ access public
* @ var bool
*/
2006-03-13 02:44:32 +01:00
var $is_month = false ;
2008-09-04 21:19:32 +02:00
/**
* Set if query contains a day .
*
* @ since 1.5 . 0
* @ access public
* @ var bool
*/
2006-03-13 02:44:32 +01:00
var $is_day = false ;
2008-09-04 21:19:32 +02:00
/**
* Set if query contains time .
*
* @ since 1.5 . 0
* @ access public
* @ var bool
*/
2006-03-13 02:44:32 +01:00
var $is_time = false ;
2008-09-04 21:19:32 +02:00
/**
* Set if query contains an author .
*
* @ since 1.5 . 0
* @ access public
* @ var bool
*/
2006-03-13 02:44:32 +01:00
var $is_author = false ;
2008-09-04 21:19:32 +02:00
/**
* Set if query contains category .
*
* @ since 1.5 . 0
* @ access public
* @ var bool
*/
2006-03-13 02:44:32 +01:00
var $is_category = false ;
2008-09-04 21:19:32 +02:00
/**
* Set if query contains tag .
*
* @ since 2.3 . 0
* @ access public
* @ var bool
*/
2007-03-31 08:16:12 +02:00
var $is_tag = false ;
2008-09-04 21:19:32 +02:00
/**
* Set if query contains taxonomy .
*
* @ since 2.5 . 0
* @ access public
* @ var bool
*/
2008-03-23 18:02:11 +01:00
var $is_tax = false ;
2008-09-04 21:19:32 +02:00
/**
* Set if query was part of a search result .
*
* @ since 1.5 . 0
* @ access public
* @ var bool
*/
2006-03-13 02:44:32 +01:00
var $is_search = false ;
2008-09-04 21:19:32 +02:00
/**
* Set if query is feed display .
*
* @ since 1.5 . 0
* @ access public
* @ var bool
*/
2006-03-13 02:44:32 +01:00
var $is_feed = false ;
2008-09-04 21:19:32 +02:00
/**
* Set if query is comment feed display .
*
* @ since 2.2 . 0
* @ access public
* @ var bool
*/
2007-02-24 08:33:29 +01:00
var $is_comment_feed = false ;
2008-09-04 21:19:32 +02:00
/**
* Set if query is trackback .
*
* @ since 1.5 . 0
* @ access public
* @ var bool
*/
2006-03-13 02:44:32 +01:00
var $is_trackback = false ;
2008-09-04 21:19:32 +02:00
/**
* Set if query is blog homepage .
*
* @ since 1.5 . 0
* @ access public
* @ var bool
*/
2006-03-13 02:44:32 +01:00
var $is_home = false ;
2008-09-04 21:19:32 +02:00
/**
* Set if query couldn ' t found anything .
*
* @ since 1.5 . 0
* @ access public
* @ var bool
*/
2006-03-13 02:44:32 +01:00
var $is_404 = false ;
2008-09-04 21:19:32 +02:00
/**
* Set if query is within comments popup window .
*
* @ since 1.5 . 0
* @ access public
* @ var bool
*/
2006-03-13 02:44:32 +01:00
var $is_comments_popup = false ;
2008-09-04 21:19:32 +02:00
/**
* Set if query is part of administration page .
*
* @ since 1.5 . 0
* @ access public
* @ var bool
*/
2006-03-13 02:44:32 +01:00
var $is_admin = false ;
2008-09-04 21:19:32 +02:00
/**
* Set if query is an attachment .
*
* @ since 2.0 . 0
* @ access public
* @ var bool
*/
2006-03-13 02:44:32 +01:00
var $is_attachment = false ;
2008-09-04 21:19:32 +02:00
/**
* Set if is single , is a page , or is an attachment .
*
* @ since 2.1 . 0
* @ access public
* @ var bool
*/
2006-08-30 05:33:39 +02:00
var $is_singular = false ;
2008-09-04 21:19:32 +02:00
/**
* Set if query is for robots .
*
* @ since 2.1 . 0
* @ access public
* @ var bool
*/
2006-05-23 00:06:06 +02:00
var $is_robots = false ;
2008-09-04 21:19:32 +02:00
/**
* Set if query contains posts .
*
* Basically , the homepage if the option isn ' t set for the static homepage .
*
* @ since 2.1 . 0
* @ access public
* @ var bool
*/
2006-07-20 04:05:25 +02:00
var $is_posts_page = false ;
2006-03-13 02:44:32 +01:00
2008-09-04 21:19:32 +02:00
/**
* Resets query flags to false .
*
* The query flags are what page info WordPress was able to figure out .
*
* @ since 2.0 . 0
* @ access private
*/
2006-03-13 02:44:32 +01:00
function init_query_flags () {
$this -> is_single = false ;
$this -> is_page = false ;
$this -> is_archive = false ;
$this -> is_date = false ;
$this -> is_year = false ;
$this -> is_month = false ;
$this -> is_day = false ;
$this -> is_time = false ;
$this -> is_author = false ;
$this -> is_category = false ;
2007-03-31 08:16:12 +02:00
$this -> is_tag = false ;
2008-03-23 18:02:11 +01:00
$this -> is_tax = false ;
2006-03-13 02:44:32 +01:00
$this -> is_search = false ;
$this -> is_feed = false ;
2007-02-24 08:33:29 +01:00
$this -> is_comment_feed = false ;
2006-03-13 02:44:32 +01:00
$this -> is_trackback = false ;
$this -> is_home = false ;
$this -> is_404 = false ;
$this -> is_paged = false ;
$this -> is_admin = false ;
$this -> is_attachment = false ;
2006-08-30 05:33:39 +02:00
$this -> is_singular = false ;
2006-05-23 00:06:06 +02:00
$this -> is_robots = false ;
2006-07-20 04:05:25 +02:00
$this -> is_posts_page = false ;
2006-03-13 02:44:32 +01:00
}
2008-09-04 21:19:32 +02:00
/**
* Initiates object properties and sets default values .
*
* @ since 1.5 . 0
* @ access public
*/
2006-03-13 02:44:32 +01:00
function init () {
unset ( $this -> posts );
unset ( $this -> query );
2006-10-23 03:34:00 +02:00
$this -> query_vars = array ();
2006-03-13 02:44:32 +01:00
unset ( $this -> queried_object );
unset ( $this -> queried_object_id );
$this -> post_count = 0 ;
$this -> current_post = - 1 ;
$this -> in_the_loop = false ;
$this -> init_query_flags ();
}
2008-09-04 21:19:32 +02:00
/**
* Reparse the query vars .
*
* @ since 1.5 . 0
* @ access public
*/
2006-03-13 02:44:32 +01:00
function parse_query_vars () {
$this -> parse_query ( '' );
}
2007-02-27 16:24:54 +01:00
2008-09-04 21:19:32 +02:00
/**
* Fills in the query variables , which do not exist within the parameter .
*
* @ since 2.1 . 0
* @ access public
*
* @ param array $array Defined query variables .
* @ return array Complete query variables with undefined ones filled in empty .
*/
2006-09-21 23:05:38 +02:00
function fill_query_vars ( $array ) {
$keys = array (
'error'
, 'm'
, 'p'
2008-05-03 22:08:32 +02:00
, 'post_parent'
2006-09-21 23:05:38 +02:00
, 'subpost'
, 'subpost_id'
, 'attachment'
, 'attachment_id'
, 'name'
, 'hour'
, 'static'
, 'pagename'
, 'page_id'
, 'second'
, 'minute'
, 'hour'
, 'day'
, 'monthnum'
, 'year'
, 'w'
, 'category_name'
2007-03-31 08:16:12 +02:00
, 'tag'
2008-08-08 19:05:10 +02:00
, 'cat'
2007-09-03 05:24:23 +02:00
, 'tag_id'
2006-09-21 23:05:38 +02:00
, 'author_name'
, 'feed'
, 'tb'
, 'paged'
, 'comments_popup'
2008-05-03 22:08:32 +02:00
, 'meta_key'
, 'meta_value'
2006-09-21 23:05:38 +02:00
, 'preview'
);
foreach ( $keys as $key ) {
if ( ! isset ( $array [ $key ]))
$array [ $key ] = '' ;
}
2007-02-27 16:24:54 +01:00
2008-05-03 22:08:32 +02:00
$array_keys = array ( 'category__in' , 'category__not_in' , 'category__and' , 'post__in' , 'post__not_in' ,
2007-09-03 20:14:05 +02:00
'tag__in' , 'tag__not_in' , 'tag__and' , 'tag_slug__in' , 'tag_slug__and' );
2007-09-04 01:19:20 +02:00
2007-08-16 00:08:51 +02:00
foreach ( $array_keys as $key ) {
if ( ! isset ( $array [ $key ]))
$array [ $key ] = array ();
}
2006-09-21 23:05:38 +02:00
return $array ;
}
2006-03-13 02:44:32 +01:00
2008-09-04 21:19:32 +02:00
/**
* Parse a query string and set query type booleans .
*
* @ since 1.5 . 0
* @ access public
*
* @ param string | array $query
*/
2006-03-13 02:44:32 +01:00
function parse_query ( $query ) {
if ( ! empty ( $query ) || ! isset ( $this -> query ) ) {
$this -> init ();
2006-08-30 06:02:12 +02:00
if ( is_array ( $query ) )
2007-03-09 05:05:28 +01:00
$this -> query_vars = $query ;
2006-08-30 06:02:12 +02:00
else
2007-03-09 05:05:28 +01:00
parse_str ( $query , $this -> query_vars );
2006-03-13 02:44:32 +01:00
$this -> query = $query ;
}
2007-02-27 16:24:54 +01:00
2007-03-09 05:05:28 +01:00
$this -> query_vars = $this -> fill_query_vars ( $this -> query_vars );
$qv = & $this -> query_vars ;
2007-02-27 16:24:54 +01:00
2007-09-05 05:11:04 +02:00
if ( ! empty ( $qv [ 'robots' ]) )
2006-05-23 00:06:06 +02:00
$this -> is_robots = true ;
2006-03-13 02:44:32 +01:00
2008-05-08 07:17:27 +02:00
$qv [ 'p' ] = absint ( $qv [ 'p' ]);
$qv [ 'page_id' ] = absint ( $qv [ 'page_id' ]);
$qv [ 'year' ] = absint ( $qv [ 'year' ]);
$qv [ 'monthnum' ] = absint ( $qv [ 'monthnum' ]);
$qv [ 'day' ] = absint ( $qv [ 'day' ]);
$qv [ 'w' ] = absint ( $qv [ 'w' ]);
$qv [ 'm' ] = absint ( $qv [ 'm' ]);
2009-06-19 19:30:39 +02:00
$qv [ 'paged' ] = absint ( $qv [ 'paged' ]);
2008-04-02 15:15:21 +02:00
$qv [ 'cat' ] = preg_replace ( '|[^0-9,-]|' , '' , $qv [ 'cat' ] ); // comma separated list of positive or negative integers
2008-08-19 05:21:12 +02:00
$qv [ 'pagename' ] = trim ( $qv [ 'pagename' ] );
$qv [ 'name' ] = trim ( $qv [ 'name' ] );
2008-05-08 07:17:27 +02:00
if ( '' !== $qv [ 'hour' ] ) $qv [ 'hour' ] = absint ( $qv [ 'hour' ]);
if ( '' !== $qv [ 'minute' ] ) $qv [ 'minute' ] = absint ( $qv [ 'minute' ]);
if ( '' !== $qv [ 'second' ] ) $qv [ 'second' ] = absint ( $qv [ 'second' ]);
2006-03-13 02:44:32 +01:00
// Compat. Map subpost to attachment.
if ( '' != $qv [ 'subpost' ] )
$qv [ 'attachment' ] = $qv [ 'subpost' ];
if ( '' != $qv [ 'subpost_id' ] )
$qv [ 'attachment_id' ] = $qv [ 'subpost_id' ];
2008-05-08 07:17:27 +02:00
$qv [ 'attachment_id' ] = absint ( $qv [ 'attachment_id' ]);
2007-06-14 04:25:30 +02:00
2007-03-09 05:05:28 +01:00
if ( ( '' != $qv [ 'attachment' ]) || ! empty ( $qv [ 'attachment_id' ]) ) {
2006-03-13 02:44:32 +01:00
$this -> is_single = true ;
$this -> is_attachment = true ;
2007-03-09 05:05:28 +01:00
} elseif ( '' != $qv [ 'name' ] ) {
2006-03-13 02:44:32 +01:00
$this -> is_single = true ;
} elseif ( $qv [ 'p' ] ) {
$this -> is_single = true ;
2007-08-04 18:30:27 +02:00
} elseif ( ( '' !== $qv [ 'hour' ]) && ( '' !== $qv [ 'minute' ]) && ( '' !== $qv [ 'second' ]) && ( '' != $qv [ 'year' ]) && ( '' != $qv [ 'monthnum' ]) && ( '' != $qv [ 'day' ]) ) {
2006-11-19 08:56:05 +01:00
// If year, month, day, hour, minute, and second are set, a single
// post is being queried.
2006-03-13 02:44:32 +01:00
$this -> is_single = true ;
2007-03-09 05:05:28 +01:00
} elseif ( '' != $qv [ 'static' ] || '' != $qv [ 'pagename' ] || ! empty ( $qv [ 'page_id' ]) ) {
2006-03-13 02:44:32 +01:00
$this -> is_page = true ;
$this -> is_single = false ;
2007-03-09 05:05:28 +01:00
} elseif ( ! empty ( $qv [ 's' ]) ) {
2006-03-13 02:44:32 +01:00
$this -> is_search = true ;
} else {
// Look for archive queries. Dates, categories, authors.
2007-08-04 18:30:27 +02:00
if ( '' !== $qv [ 'second' ] ) {
2006-03-13 02:44:32 +01:00
$this -> is_time = true ;
$this -> is_date = true ;
}
2007-08-04 18:30:27 +02:00
if ( '' !== $qv [ 'minute' ] ) {
2006-03-13 02:44:32 +01:00
$this -> is_time = true ;
$this -> is_date = true ;
}
2007-08-04 18:30:27 +02:00
if ( '' !== $qv [ 'hour' ] ) {
2006-03-13 02:44:32 +01:00
$this -> is_time = true ;
$this -> is_date = true ;
}
2007-03-09 05:05:28 +01:00
if ( $qv [ 'day' ] ) {
2006-03-13 02:44:32 +01:00
if ( ! $this -> is_date ) {
$this -> is_day = true ;
$this -> is_date = true ;
}
}
2007-03-09 05:05:28 +01:00
if ( $qv [ 'monthnum' ] ) {
2006-03-13 02:44:32 +01:00
if ( ! $this -> is_date ) {
$this -> is_month = true ;
$this -> is_date = true ;
}
}
2007-03-09 05:05:28 +01:00
if ( $qv [ 'year' ] ) {
2006-03-13 02:44:32 +01:00
if ( ! $this -> is_date ) {
$this -> is_year = true ;
$this -> is_date = true ;
}
}
2007-03-09 05:05:28 +01:00
if ( $qv [ 'm' ] ) {
2006-03-13 02:44:32 +01:00
$this -> is_date = true ;
if ( strlen ( $qv [ 'm' ]) > 9 ) {
$this -> is_time = true ;
} else if ( strlen ( $qv [ 'm' ]) > 7 ) {
$this -> is_day = true ;
} else if ( strlen ( $qv [ 'm' ]) > 5 ) {
$this -> is_month = true ;
} else {
$this -> is_year = true ;
}
}
if ( '' != $qv [ 'w' ]) {
$this -> is_date = true ;
}
2007-03-09 05:05:28 +01:00
if ( empty ( $qv [ 'cat' ]) || ( $qv [ 'cat' ] == '0' ) ) {
2006-03-13 02:44:32 +01:00
$this -> is_category = false ;
} else {
2007-03-07 06:29:15 +01:00
if ( strpos ( $qv [ 'cat' ], '-' ) !== false ) {
2006-03-13 02:44:32 +01:00
$this -> is_category = false ;
} else {
$this -> is_category = true ;
}
}
2007-03-09 05:05:28 +01:00
if ( '' != $qv [ 'category_name' ] ) {
2006-03-13 02:44:32 +01:00
$this -> is_category = true ;
}
2006-11-19 08:56:05 +01:00
2007-08-16 00:08:51 +02:00
if ( ! is_array ( $qv [ 'category__in' ]) || empty ( $qv [ 'category__in' ]) ) {
$qv [ 'category__in' ] = array ();
} else {
2008-05-08 07:17:27 +02:00
$qv [ 'category__in' ] = array_map ( 'absint' , $qv [ 'category__in' ]);
2007-09-04 01:32:58 +02:00
$this -> is_category = true ;
2007-08-16 00:08:51 +02:00
}
2007-12-20 21:59:53 +01:00
if ( ! is_array ( $qv [ 'category__not_in' ]) || empty ( $qv [ 'category__not_in' ]) ) {
2007-08-16 00:08:51 +02:00
$qv [ 'category__not_in' ] = array ();
} else {
2008-05-08 07:17:27 +02:00
$qv [ 'category__not_in' ] = array_map ( 'absint' , $qv [ 'category__not_in' ]);
2007-08-16 00:08:51 +02:00
}
if ( ! is_array ( $qv [ 'category__and' ]) || empty ( $qv [ 'category__and' ]) ) {
$qv [ 'category__and' ] = array ();
} else {
2008-05-08 07:17:27 +02:00
$qv [ 'category__and' ] = array_map ( 'absint' , $qv [ 'category__and' ]);
2007-09-04 01:32:58 +02:00
$this -> is_category = true ;
2007-08-16 00:08:51 +02:00
}
2007-03-31 08:16:12 +02:00
if ( '' != $qv [ 'tag' ] )
$this -> is_tag = true ;
2008-05-08 07:17:27 +02:00
$qv [ 'tag_id' ] = absint ( $qv [ 'tag_id' ]);
2007-09-03 05:26:57 +02:00
if ( ! empty ( $qv [ 'tag_id' ]) )
2007-09-03 05:24:23 +02:00
$this -> is_tag = true ;
if ( ! is_array ( $qv [ 'tag__in' ]) || empty ( $qv [ 'tag__in' ]) ) {
$qv [ 'tag__in' ] = array ();
} else {
2008-05-08 07:17:27 +02:00
$qv [ 'tag__in' ] = array_map ( 'absint' , $qv [ 'tag__in' ]);
2007-09-04 01:32:58 +02:00
$this -> is_tag = true ;
2007-09-03 05:24:23 +02:00
}
2007-12-20 21:59:53 +01:00
if ( ! is_array ( $qv [ 'tag__not_in' ]) || empty ( $qv [ 'tag__not_in' ]) ) {
2007-09-03 05:24:23 +02:00
$qv [ 'tag__not_in' ] = array ();
} else {
2008-05-08 07:17:27 +02:00
$qv [ 'tag__not_in' ] = array_map ( 'absint' , $qv [ 'tag__not_in' ]);
2007-09-03 05:24:23 +02:00
}
if ( ! is_array ( $qv [ 'tag__and' ]) || empty ( $qv [ 'tag__and' ]) ) {
$qv [ 'tag__and' ] = array ();
} else {
2008-05-08 07:17:27 +02:00
$qv [ 'tag__and' ] = array_map ( 'absint' , $qv [ 'tag__and' ]);
2007-09-04 01:32:58 +02:00
$this -> is_category = true ;
2007-09-03 05:24:23 +02:00
}
2007-09-03 20:14:05 +02:00
if ( ! is_array ( $qv [ 'tag_slug__in' ]) || empty ( $qv [ 'tag_slug__in' ]) ) {
$qv [ 'tag_slug__in' ] = array ();
} else {
$qv [ 'tag_slug__in' ] = array_map ( 'sanitize_title' , $qv [ 'tag_slug__in' ]);
2007-09-04 01:32:58 +02:00
$this -> is_tag = true ;
2007-09-03 20:14:05 +02:00
}
2007-09-11 20:06:52 +02:00
if ( ! is_array ( $qv [ 'tag_slug__and' ]) || empty ( $qv [ 'tag_slug__and' ]) ) {
2007-09-03 20:14:05 +02:00
$qv [ 'tag_slug__and' ] = array ();
} else {
$qv [ 'tag_slug__and' ] = array_map ( 'sanitize_title' , $qv [ 'tag_slug__and' ]);
2007-09-04 01:32:58 +02:00
$this -> is_tag = true ;
2007-09-03 20:14:05 +02:00
}
2008-03-23 18:02:11 +01:00
if ( empty ( $qv [ 'taxonomy' ]) || empty ( $qv [ 'term' ]) ) {
$this -> is_tax = false ;
2009-04-04 12:48:22 +02:00
foreach ( $GLOBALS [ 'wp_taxonomies' ] as $taxonomy => $t ) {
2009-04-30 21:05:32 +02:00
if ( $t -> query_var && isset ( $qv [ $t -> query_var ]) && '' != $qv [ $t -> query_var ] ) {
2009-04-04 12:48:22 +02:00
$qv [ 'taxonomy' ] = $taxonomy ;
$qv [ 'term' ] = $qv [ $t -> query_var ];
2008-03-26 07:37:19 +01:00
$this -> is_tax = true ;
break ;
}
}
2008-03-23 18:02:11 +01:00
} else {
$this -> is_tax = true ;
}
2007-03-09 05:05:28 +01:00
if ( empty ( $qv [ 'author' ]) || ( $qv [ 'author' ] == '0' ) ) {
2006-03-13 02:44:32 +01:00
$this -> is_author = false ;
} else {
$this -> is_author = true ;
}
2007-03-09 05:05:28 +01:00
if ( '' != $qv [ 'author_name' ] ) {
2006-03-13 02:44:32 +01:00
$this -> is_author = true ;
}
2008-10-04 03:35:47 +02:00
if ( ( $this -> is_date || $this -> is_author || $this -> is_category || $this -> is_tag || $this -> is_tax ) )
2006-03-13 02:44:32 +01:00
$this -> is_archive = true ;
}
2007-03-09 05:05:28 +01:00
if ( '' != $qv [ 'feed' ] )
2006-03-13 02:44:32 +01:00
$this -> is_feed = true ;
2007-03-09 05:05:28 +01:00
if ( '' != $qv [ 'tb' ] )
2006-03-13 02:44:32 +01:00
$this -> is_trackback = true ;
2009-12-11 17:38:59 +01:00
if ( '' != $qv [ 'paged' ] && ( intval ( $qv [ 'paged' ]) > 1 ) )
2006-03-13 02:44:32 +01:00
$this -> is_paged = true ;
2007-03-09 05:05:28 +01:00
if ( '' != $qv [ 'comments_popup' ] )
2006-03-13 02:44:32 +01:00
$this -> is_comments_popup = true ;
2007-03-09 05:05:28 +01:00
// if we're previewing inside the write screen
if ( '' != $qv [ 'preview' ])
2006-03-13 02:44:32 +01:00
$this -> is_preview = true ;
2007-12-28 02:04:17 +01:00
if ( is_admin () )
2006-03-13 02:44:32 +01:00
$this -> is_admin = true ;
2007-02-24 08:33:29 +01:00
if ( false !== strpos ( $qv [ 'feed' ], 'comments-' ) ) {
2007-03-09 05:05:28 +01:00
$qv [ 'feed' ] = str_replace ( 'comments-' , '' , $qv [ 'feed' ]);
2007-02-24 08:33:29 +01:00
$qv [ 'withcomments' ] = 1 ;
}
2007-02-28 06:22:29 +01:00
$this -> is_singular = $this -> is_single || $this -> is_page || $this -> is_attachment ;
if ( $this -> is_feed && ( ! empty ( $qv [ 'withcomments' ]) || ( empty ( $qv [ 'withoutcomments' ]) && $this -> is_singular ) ) )
2007-02-24 08:33:29 +01:00
$this -> is_comment_feed = true ;
2009-04-13 18:15:44 +02:00
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 ) )
2006-03-13 02:44:32 +01:00
$this -> is_home = true ;
2007-02-28 06:22:29 +01:00
// Correct is_* for page_on_front and page_for_posts
if ( $this -> is_home && ( empty ( $this -> query ) || $qv [ 'preview' ] == 'true' ) && 'page' == get_option ( 'show_on_front' ) && get_option ( 'page_on_front' ) ) {
$this -> is_page = true ;
$this -> is_home = false ;
2007-03-09 05:05:28 +01:00
$qv [ 'page_id' ] = get_option ( 'page_on_front' );
2007-02-28 06:22:29 +01:00
}
if ( '' != $qv [ 'pagename' ] ) {
$this -> queried_object =& get_page_by_path ( $qv [ 'pagename' ]);
if ( ! empty ( $this -> queried_object ) )
2007-03-23 01:59:21 +01:00
$this -> queried_object_id = ( int ) $this -> queried_object -> ID ;
2007-02-28 06:22:29 +01:00
else
unset ( $this -> queried_object );
if ( 'page' == get_option ( 'show_on_front' ) && isset ( $this -> queried_object_id ) && $this -> queried_object_id == get_option ( 'page_for_posts' ) ) {
$this -> is_page = false ;
$this -> is_home = true ;
$this -> is_posts_page = true ;
}
}
2007-03-09 05:05:28 +01:00
if ( $qv [ 'page_id' ] ) {
2007-02-28 06:22:29 +01:00
if ( 'page' == get_option ( 'show_on_front' ) && $qv [ 'page_id' ] == get_option ( 'page_for_posts' ) ) {
$this -> is_page = false ;
$this -> is_home = true ;
$this -> is_posts_page = true ;
}
}
2009-11-05 17:08:53 +01:00
if ( ! empty ( $qv [ 'post_type' ]) ) {
if ( is_array ( $qv [ 'post_type' ]))
$qv [ 'post_type' ] = array_map ( 'sanitize_user' , $qv [ 'post_type' ], array ( true ));
else
$qv [ 'post_type' ] = sanitize_user ( $qv [ 'post_type' ], true );
}
2007-08-23 18:09:37 +02:00
if ( ! empty ( $qv [ 'post_status' ]) )
2008-07-30 10:16:56 +02:00
$qv [ 'post_status' ] = preg_replace ( '|[^a-z0-9_,-]|' , '' , $qv [ 'post_status' ]);
2007-08-23 18:09:37 +02:00
2008-08-29 20:33:04 +02:00
if ( $this -> is_posts_page && ( ! isset ( $qv [ 'withcomments' ]) || ! $qv [ 'withcomments' ] ) )
2007-02-28 06:22:29 +01:00
$this -> is_comment_feed = false ;
$this -> is_singular = $this -> is_single || $this -> is_page || $this -> is_attachment ;
// Done correcting is_* for page_on_front and page_for_posts
2007-09-05 05:11:04 +02:00
if ( '404' == $qv [ 'error' ])
$this -> set_404 ();
2007-03-09 05:05:28 +01:00
if ( ! empty ( $query ) )
2006-09-12 19:45:23 +02:00
do_action_ref_array ( 'parse_query' , array ( & $this ));
2006-03-13 02:44:32 +01:00
}
2008-09-04 21:19:32 +02:00
/**
* Sets the 404 property and saves whether query is feed .
*
* @ since 2.0 . 0
* @ access public
*/
2006-03-13 02:44:32 +01:00
function set_404 () {
2006-08-15 07:03:14 +02:00
$is_feed = $this -> is_feed ;
2006-03-13 02:44:32 +01:00
$this -> init_query_flags ();
$this -> is_404 = true ;
2006-08-15 07:03:14 +02:00
$this -> is_feed = $is_feed ;
2006-03-13 02:44:32 +01:00
}
2008-09-04 21:19:32 +02:00
/**
* Retrieve query variable .
*
* @ since 1.5 . 0
* @ access public
*
* @ param string $query_var Query variable key .
* @ return mixed
*/
2006-03-13 02:44:32 +01:00
function get ( $query_var ) {
if ( isset ( $this -> query_vars [ $query_var ])) {
return $this -> query_vars [ $query_var ];
}
return '' ;
}
2008-09-04 21:19:32 +02:00
/**
* Set query variable .
*
* @ since 1.5 . 0
* @ access public
*
* @ param string $query_var Query variable key .
* @ param mixed $value Query variable value .
*/
2006-03-13 02:44:32 +01:00
function set ( $query_var , $value ) {
$this -> query_vars [ $query_var ] = $value ;
}
2008-09-04 21:19:32 +02:00
/**
* Retrieve the posts based on query variables .
*
* There are a few filters and actions that can be used to modify the post
* database query .
*
* @ since 1.5 . 0
* @ access public
* @ uses do_action_ref_array () Calls 'pre_get_posts' hook before retrieving posts .
*
* @ return array List of posts .
*/
2006-03-13 02:44:32 +01:00
function & get_posts () {
2007-12-06 20:49:33 +01:00
global $wpdb , $user_ID ;
2006-03-13 02:44:32 +01:00
2006-09-12 19:45:23 +02:00
do_action_ref_array ( 'pre_get_posts' , array ( & $this ));
2006-03-13 02:44:32 +01:00
// Shorthand.
$q = & $this -> query_vars ;
2007-02-27 16:24:54 +01:00
2006-09-21 23:05:38 +02:00
$q = $this -> fill_query_vars ( $q );
2006-03-13 02:44:32 +01:00
// First let's clear some variables
2006-05-08 04:16:24 +02:00
$distinct = '' ;
2006-03-13 02:44:32 +01:00
$whichcat = '' ;
$whichauthor = '' ;
2008-02-19 07:13:20 +01:00
$whichmimetype = '' ;
2006-03-13 02:44:32 +01:00
$where = '' ;
$limits = '' ;
$join = '' ;
2006-09-21 23:05:38 +02:00
$search = '' ;
2006-11-08 00:43:59 +01:00
$groupby = '' ;
2008-08-29 20:33:04 +02:00
$fields = " $wpdb->posts .* " ;
2009-05-21 02:10:04 +02:00
$post_status_join = false ;
2008-08-29 20:33:04 +02:00
$page = 1 ;
2006-03-13 02:44:32 +01:00
2008-08-05 07:48:21 +02:00
if ( ! isset ( $q [ 'caller_get_posts' ]) )
$q [ 'caller_get_posts' ] = false ;
2008-08-29 00:30:27 +02:00
if ( ! isset ( $q [ 'suppress_filters' ]) )
$q [ 'suppress_filters' ] = false ;
2007-12-22 09:19:10 +01:00
if ( ! isset ( $q [ 'post_type' ]) ) {
if ( $this -> is_search )
$q [ 'post_type' ] = 'any' ;
else
2009-08-15 12:57:56 +02:00
$q [ 'post_type' ] = '' ;
2007-12-22 09:19:10 +01:00
}
2006-03-13 02:44:32 +01:00
$post_type = $q [ 'post_type' ];
if ( ! isset ( $q [ 'posts_per_page' ]) || $q [ 'posts_per_page' ] == 0 )
2006-08-30 23:46:31 +02:00
$q [ 'posts_per_page' ] = get_option ( 'posts_per_page' );
2006-03-13 02:44:32 +01:00
if ( isset ( $q [ 'showposts' ]) && $q [ 'showposts' ] ) {
$q [ 'showposts' ] = ( int ) $q [ 'showposts' ];
$q [ 'posts_per_page' ] = $q [ 'showposts' ];
}
if ( ( isset ( $q [ 'posts_per_archive_page' ]) && $q [ 'posts_per_archive_page' ] != 0 ) && ( $this -> is_archive || $this -> is_search ) )
$q [ 'posts_per_page' ] = $q [ 'posts_per_archive_page' ];
if ( ! isset ( $q [ 'nopaging' ]) ) {
if ( $q [ 'posts_per_page' ] == - 1 ) {
$q [ 'nopaging' ] = true ;
} else {
$q [ 'nopaging' ] = false ;
}
}
if ( $this -> is_feed ) {
2006-08-30 23:46:31 +02:00
$q [ 'posts_per_page' ] = get_option ( 'posts_per_rss' );
2006-12-07 00:14:37 +01:00
$q [ 'nopaging' ] = false ;
2006-03-13 02:44:32 +01:00
}
2006-08-25 00:33:16 +02:00
$q [ 'posts_per_page' ] = ( int ) $q [ 'posts_per_page' ];
if ( $q [ 'posts_per_page' ] < - 1 )
$q [ 'posts_per_page' ] = abs ( $q [ 'posts_per_page' ]);
else if ( $q [ 'posts_per_page' ] == 0 )
$q [ 'posts_per_page' ] = 1 ;
2006-03-13 02:44:32 +01:00
2008-09-23 23:11:27 +02:00
if ( ! isset ( $q [ 'comments_per_page' ]) || $q [ 'comments_per_page' ] == 0 )
$q [ 'comments_per_page' ] = get_option ( 'comments_per_page' );
2006-06-22 05:39:23 +02:00
if ( $this -> is_home && ( empty ( $this -> query ) || $q [ 'preview' ] == 'true' ) && ( 'page' == get_option ( 'show_on_front' ) ) && get_option ( 'page_on_front' ) ) {
2006-03-13 02:44:32 +01:00
$this -> is_page = true ;
$this -> is_home = false ;
$q [ 'page_id' ] = get_option ( 'page_on_front' );
}
if ( isset ( $q [ 'page' ])) {
$q [ 'page' ] = trim ( $q [ 'page' ], '/' );
2008-05-08 07:17:27 +02:00
$q [ 'page' ] = absint ( $q [ 'page' ]);
2006-03-13 02:44:32 +01:00
}
// If a month is specified in the querystring, load that month
2007-03-09 05:05:28 +01:00
if ( $q [ 'm' ] ) {
2006-03-13 02:44:32 +01:00
$q [ 'm' ] = '' . preg_replace ( '|[^0-9]|' , '' , $q [ 'm' ]);
2008-03-23 18:02:11 +01:00
$where .= " AND YEAR( $wpdb->posts .post_date)= " . substr ( $q [ 'm' ], 0 , 4 );
2006-03-13 02:44:32 +01:00
if ( strlen ( $q [ 'm' ]) > 5 )
2008-03-23 18:02:11 +01:00
$where .= " AND MONTH( $wpdb->posts .post_date)= " . substr ( $q [ 'm' ], 4 , 2 );
2006-03-13 02:44:32 +01:00
if ( strlen ( $q [ 'm' ]) > 7 )
2008-03-23 18:02:11 +01:00
$where .= " AND DAYOFMONTH( $wpdb->posts .post_date)= " . substr ( $q [ 'm' ], 6 , 2 );
2006-03-13 02:44:32 +01:00
if ( strlen ( $q [ 'm' ]) > 9 )
2008-03-23 18:02:11 +01:00
$where .= " AND HOUR( $wpdb->posts .post_date)= " . substr ( $q [ 'm' ], 8 , 2 );
2006-03-13 02:44:32 +01:00
if ( strlen ( $q [ 'm' ]) > 11 )
2008-03-23 18:02:11 +01:00
$where .= " AND MINUTE( $wpdb->posts .post_date)= " . substr ( $q [ 'm' ], 10 , 2 );
2006-03-13 02:44:32 +01:00
if ( strlen ( $q [ 'm' ]) > 13 )
2008-03-23 18:02:11 +01:00
$where .= " AND SECOND( $wpdb->posts .post_date)= " . substr ( $q [ 'm' ], 12 , 2 );
2006-03-13 02:44:32 +01:00
}
2007-08-04 18:30:27 +02:00
if ( '' !== $q [ 'hour' ] )
2008-03-23 18:02:11 +01:00
$where .= " AND HOUR( $wpdb->posts .post_date)=' " . $q [ 'hour' ] . " ' " ;
2006-03-13 02:44:32 +01:00
2007-08-04 18:30:27 +02:00
if ( '' !== $q [ 'minute' ] )
2008-03-23 18:02:11 +01:00
$where .= " AND MINUTE( $wpdb->posts .post_date)=' " . $q [ 'minute' ] . " ' " ;
2006-03-13 02:44:32 +01:00
2007-08-04 18:30:27 +02:00
if ( '' !== $q [ 'second' ] )
2008-03-23 18:02:11 +01:00
$where .= " AND SECOND( $wpdb->posts .post_date)=' " . $q [ 'second' ] . " ' " ;
2006-03-13 02:44:32 +01:00
2007-03-09 05:05:28 +01:00
if ( $q [ 'year' ] )
2008-03-23 18:02:11 +01:00
$where .= " AND YEAR( $wpdb->posts .post_date)=' " . $q [ 'year' ] . " ' " ;
2006-03-13 02:44:32 +01:00
2007-03-09 05:05:28 +01:00
if ( $q [ 'monthnum' ] )
2008-03-23 18:02:11 +01:00
$where .= " AND MONTH( $wpdb->posts .post_date)=' " . $q [ 'monthnum' ] . " ' " ;
2006-03-13 02:44:32 +01:00
2007-03-09 05:05:28 +01:00
if ( $q [ 'day' ] )
2008-03-23 18:02:11 +01:00
$where .= " AND DAYOFMONTH( $wpdb->posts .post_date)=' " . $q [ 'day' ] . " ' " ;
2006-03-13 02:44:32 +01:00
if ( '' != $q [ 'name' ]) {
$q [ 'name' ] = sanitize_title ( $q [ 'name' ]);
2008-03-23 18:02:11 +01:00
$where .= " AND $wpdb->posts .post_name = ' " . $q [ 'name' ] . " ' " ;
2006-03-13 02:44:32 +01:00
} else if ( '' != $q [ 'pagename' ]) {
2007-02-28 06:22:29 +01:00
if ( isset ( $this -> queried_object_id ) )
$reqpage = $this -> queried_object_id ;
else {
$reqpage = get_page_by_path ( $q [ 'pagename' ]);
if ( ! empty ( $reqpage ) )
$reqpage = $reqpage -> ID ;
else
$reqpage = 0 ;
}
2006-03-13 02:44:32 +01:00
2008-05-07 21:57:15 +02:00
$page_for_posts = get_option ( 'page_for_posts' );
if ( ( 'page' != get_option ( 'show_on_front' ) ) || empty ( $page_for_posts ) || ( $reqpage != $page_for_posts ) ) {
2006-03-13 02:44:32 +01:00
$q [ 'pagename' ] = str_replace ( '%2F' , '/' , urlencode ( urldecode ( $q [ 'pagename' ])));
$page_paths = '/' . trim ( $q [ 'pagename' ], '/' );
$q [ 'pagename' ] = sanitize_title ( basename ( $page_paths ));
$q [ 'name' ] = $q [ 'pagename' ];
2008-06-24 19:49:24 +02:00
$where .= " AND ( $wpdb->posts .ID = ' $reqpage ') " ;
2007-12-12 12:45:55 +01:00
$reqpage_obj = get_page ( $reqpage );
2008-11-10 19:54:18 +01:00
if ( is_object ( $reqpage_obj ) && 'attachment' == $reqpage_obj -> post_type ) {
2007-12-12 12:45:55 +01:00
$this -> is_attachment = true ;
2008-02-27 22:30:59 +01:00
$this -> is_page = true ;
2007-12-12 12:45:55 +01:00
$q [ 'attachment_id' ] = $reqpage ;
}
2006-03-13 02:44:32 +01:00
}
} elseif ( '' != $q [ 'attachment' ]) {
$q [ 'attachment' ] = str_replace ( '%2F' , '/' , urlencode ( urldecode ( $q [ 'attachment' ])));
$attach_paths = '/' . trim ( $q [ 'attachment' ], '/' );
$q [ 'attachment' ] = sanitize_title ( basename ( $attach_paths ));
$q [ 'name' ] = $q [ 'attachment' ];
2008-03-23 18:02:11 +01:00
$where .= " AND $wpdb->posts .post_name = ' " . $q [ 'attachment' ] . " ' " ;
2006-03-13 02:44:32 +01:00
}
2007-03-09 05:05:28 +01:00
if ( $q [ 'w' ] )
2008-03-23 18:02:11 +01:00
$where .= " AND WEEK( $wpdb->posts .post_date, 1)=' " . $q [ 'w' ] . " ' " ;
2006-03-13 02:44:32 +01:00
if ( intval ( $q [ 'comments_popup' ]) )
2008-05-08 07:17:27 +02:00
$q [ 'p' ] = absint ( $q [ 'comments_popup' ]);
2006-03-13 02:44:32 +01:00
2007-03-09 05:05:28 +01:00
// If an attachment is requested by number, let it supercede any post number.
if ( $q [ 'attachment_id' ] )
2008-05-08 07:17:27 +02:00
$q [ 'p' ] = absint ( $q [ 'attachment_id' ]);
2006-03-13 02:44:32 +01:00
// If a post number is specified, load that post
2008-05-08 07:17:27 +02:00
if ( $q [ 'p' ] ) {
$where .= " AND { $wpdb -> posts } .ID = " . $q [ 'p' ];
} elseif ( $q [ 'post__in' ] ) {
$post__in = implode ( ',' , array_map ( 'absint' , $q [ 'post__in' ] ));
$where .= " AND { $wpdb -> posts } .ID IN ( $post__in ) " ;
2008-05-03 22:08:32 +02:00
} elseif ( $q [ 'post__not_in' ] ) {
2008-05-08 07:17:27 +02:00
$post__not_in = implode ( ',' , array_map ( 'absint' , $q [ 'post__not_in' ] ));
$where .= " AND { $wpdb -> posts } .ID NOT IN ( $post__not_in ) " ;
2008-05-03 22:08:32 +02:00
}
2006-03-13 02:44:32 +01:00
2008-11-19 21:48:05 +01:00
if ( is_numeric ( $q [ 'post_parent' ]) )
2008-05-08 07:17:27 +02:00
$where .= $wpdb -> prepare ( " AND $wpdb->posts .post_parent = %d " , $q [ 'post_parent' ] );
2007-03-09 05:05:28 +01:00
if ( $q [ 'page_id' ] ) {
2007-02-28 06:22:29 +01:00
if ( ( 'page' != get_option ( 'show_on_front' ) ) || ( $q [ 'page_id' ] != get_option ( 'page_for_posts' ) ) ) {
2006-03-13 02:44:32 +01:00
$q [ 'p' ] = $q [ 'page_id' ];
2007-11-03 20:00:33 +01:00
$where = " AND { $wpdb -> posts } .ID = " . $q [ 'page_id' ];
2006-03-13 02:44:32 +01:00
}
}
// If a search pattern is specified, load the posts that match
2007-03-09 05:05:28 +01:00
if ( ! empty ( $q [ 's' ]) ) {
2006-10-27 05:47:43 +02:00
// added slashes screw with quote grouping when done early, so done later
$q [ 's' ] = stripslashes ( $q [ 's' ]);
2008-11-15 18:56:44 +01:00
if ( ! empty ( $q [ 'sentence' ]) ) {
2006-10-27 05:47:43 +02:00
$q [ 'search_terms' ] = array ( $q [ 's' ]);
2007-12-22 09:19:10 +01:00
} else {
2008-11-15 18:56:44 +01:00
preg_match_all ( '/".*?("|$)|((?<=[\\s",+])|^)[^\\s",+]+/' , $q [ 's' ], $matches );
2009-10-18 13:50:59 +02:00
$q [ 'search_terms' ] = array_map ( '_search_terms_tidy' , $matches [ 0 ]);
2006-10-27 05:47:43 +02:00
}
2008-11-15 18:56:44 +01:00
$n = ! empty ( $q [ 'exact' ]) ? '' : '%' ;
2006-10-27 05:47:43 +02:00
$searchand = '' ;
2008-08-06 22:31:54 +02:00
foreach ( ( array ) $q [ 'search_terms' ] as $term ) {
2006-10-27 05:47:43 +02:00
$term = addslashes_gpc ( $term );
2008-03-23 18:02:11 +01:00
$search .= " { $searchand } (( $wpdb->posts .post_title LIKE ' { $n } { $term } { $n } ') OR ( $wpdb->posts .post_content LIKE ' { $n } { $term } { $n } ')) " ;
2006-10-27 05:47:43 +02:00
$searchand = ' AND ' ;
2006-03-13 02:44:32 +01:00
}
2009-09-27 07:33:56 +02:00
$term = esc_sql ( $q [ 's' ]);
2008-11-15 18:56:44 +01:00
if ( empty ( $q [ 'sentence' ]) && count ( $q [ 'search_terms' ]) > 1 && $q [ 'search_terms' ][ 0 ] != $q [ 's' ] )
2008-03-23 18:02:11 +01:00
$search .= " OR ( $wpdb->posts .post_title LIKE ' { $n } { $term } { $n } ') OR ( $wpdb->posts .post_content LIKE ' { $n } { $term } { $n } ') " ;
2007-02-22 02:54:28 +01:00
2009-04-28 02:05:43 +02:00
if ( ! empty ( $search ) ) {
2007-02-22 02:54:28 +01:00
$search = " AND ( { $search } ) " ;
2009-04-28 02:05:43 +02:00
if ( ! is_user_logged_in () )
$search .= " AND ( $wpdb->posts .post_password = '') " ;
}
2006-03-13 02:44:32 +01:00
}
2010-02-09 17:38:05 +01:00
$search = apply_filters ( 'posts_search' , $search , $this );
2006-03-13 02:44:32 +01:00
// Category stuff
2007-03-09 05:05:28 +01:00
if ( empty ( $q [ 'cat' ]) || ( $q [ 'cat' ] == '0' ) ||
2006-03-13 02:44:32 +01:00
// Bypass cat checks if fetching specific posts
2007-03-09 05:05:28 +01:00
$this -> is_singular ) {
$whichcat = '' ;
2006-03-13 02:44:32 +01:00
} else {
$q [ 'cat' ] = '' . urldecode ( $q [ 'cat' ]) . '' ;
$q [ 'cat' ] = addslashes_gpc ( $q [ 'cat' ]);
$cat_array = preg_split ( '/[,\s]+/' , $q [ 'cat' ]);
2008-03-25 18:47:02 +01:00
$q [ 'cat' ] = '' ;
$req_cats = array ();
2008-08-06 22:31:54 +02:00
foreach ( ( array ) $cat_array as $cat ) {
2006-06-01 09:42:46 +02:00
$cat = intval ( $cat );
2008-03-25 18:47:02 +01:00
$req_cats [] = $cat ;
2007-05-29 23:27:49 +02:00
$in = ( $cat > 0 );
$cat = abs ( $cat );
if ( $in ) {
2007-08-16 00:08:51 +02:00
$q [ 'category__in' ][] = $cat ;
$q [ 'category__in' ] = array_merge ( $q [ 'category__in' ], get_term_children ( $cat , 'category' ));
2007-05-29 23:27:49 +02:00
} else {
2007-08-16 00:08:51 +02:00
$q [ 'category__not_in' ][] = $cat ;
$q [ 'category__not_in' ] = array_merge ( $q [ 'category__not_in' ], get_term_children ( $cat , 'category' ));
2007-05-29 23:27:49 +02:00
}
2006-03-13 02:44:32 +01:00
}
2008-03-25 18:47:02 +01:00
$q [ 'cat' ] = implode ( ',' , $req_cats );
2007-08-16 00:08:51 +02:00
}
if ( ! empty ( $q [ 'category__in' ]) ) {
2007-10-11 19:43:49 +02:00
$join = " INNER JOIN $wpdb->term_relationships ON ( $wpdb->posts .ID = $wpdb->term_relationships .object_id) INNER JOIN $wpdb->term_taxonomy ON ( $wpdb->term_relationships .term_taxonomy_id = $wpdb->term_taxonomy .term_taxonomy_id) " ;
2007-08-16 00:08:51 +02:00
$whichcat .= " AND $wpdb->term_taxonomy .taxonomy = 'category' " ;
$include_cats = " ' " . implode ( " ', ' " , $q [ 'category__in' ]) . " ' " ;
$whichcat .= " AND $wpdb->term_taxonomy .term_id IN ( $include_cats ) " ;
}
if ( ! empty ( $q [ 'category__not_in' ]) ) {
2009-12-15 22:01:57 +01:00
$cat_string = " ' " . implode ( " ', ' " , $q [ 'category__not_in' ]) . " ' " ;
$whichcat .= " AND $wpdb->posts .ID NOT IN ( SELECT tr.object_id FROM $wpdb->term_relationships AS tr INNER JOIN $wpdb->term_taxonomy AS tt ON tr.term_taxonomy_id = tt.term_taxonomy_id WHERE tt.taxonomy = 'category' AND tt.term_id IN ( $cat_string ) ) " ;
2007-08-16 00:08:51 +02:00
}
2007-05-29 23:27:49 +02:00
2006-08-30 18:40:17 +02:00
// Category stuff for nice URLs
2008-03-26 21:17:31 +01:00
if ( '' != $q [ 'category_name' ] && ! $this -> is_singular ) {
2009-04-29 18:25:33 +02:00
$q [ 'category_name' ] = implode ( '/' , array_map ( 'sanitize_title' , explode ( '/' , $q [ 'category_name' ])));
2006-03-13 02:44:32 +01:00
$reqcat = get_category_by_path ( $q [ 'category_name' ]);
$q [ 'category_name' ] = str_replace ( '%2F' , '/' , urlencode ( urldecode ( $q [ 'category_name' ])));
$cat_paths = '/' . trim ( $q [ 'category_name' ], '/' );
$q [ 'category_name' ] = sanitize_title ( basename ( $cat_paths ));
$cat_paths = '/' . trim ( urldecode ( $q [ 'category_name' ]), '/' );
$q [ 'category_name' ] = sanitize_title ( basename ( $cat_paths ));
$cat_paths = explode ( '/' , $cat_paths );
2006-12-09 07:35:22 +01:00
$cat_path = '' ;
foreach ( ( array ) $cat_paths as $pathdir )
$cat_path .= ( $pathdir != '' ? '/' : '' ) . sanitize_title ( $pathdir );
2006-03-13 02:44:32 +01:00
//if we don't match the entire hierarchy fallback on just matching the nicename
if ( empty ( $reqcat ) )
$reqcat = get_category_by_path ( $q [ 'category_name' ], false );
if ( ! empty ( $reqcat ) )
2007-05-23 20:59:12 +02:00
$reqcat = $reqcat -> term_id ;
2006-03-13 02:44:32 +01:00
else
$reqcat = 0 ;
$q [ 'cat' ] = $reqcat ;
2006-11-19 08:56:05 +01:00
2007-10-11 19:43:49 +02:00
$join = " INNER JOIN $wpdb->term_relationships ON ( $wpdb->posts .ID = $wpdb->term_relationships .object_id) INNER JOIN $wpdb->term_taxonomy ON ( $wpdb->term_relationships .term_taxonomy_id = $wpdb->term_taxonomy .term_taxonomy_id) " ;
2007-05-23 20:59:12 +02:00
$whichcat = " AND $wpdb->term_taxonomy .taxonomy = 'category' " ;
2007-06-06 18:13:12 +02:00
$in_cats = array ( $q [ 'cat' ]);
$in_cats = array_merge ( $in_cats , get_term_children ( $q [ 'cat' ], 'category' ));
$in_cats = " ' " . implode ( " ', ' " , $in_cats ) . " ' " ;
$whichcat .= " AND $wpdb->term_taxonomy .term_id IN ( $in_cats ) " ;
2006-11-08 00:43:59 +01:00
$groupby = " { $wpdb -> posts } .ID " ;
2006-03-13 02:44:32 +01:00
}
2007-09-03 05:24:23 +02:00
// Tags
if ( '' != $q [ 'tag' ] ) {
2007-09-03 20:14:05 +02:00
if ( strpos ( $q [ 'tag' ], ',' ) !== false ) {
$tags = preg_split ( '/[,\s]+/' , $q [ 'tag' ]);
foreach ( ( array ) $tags as $tag ) {
$tag = sanitize_term_field ( 'slug' , $tag , 0 , 'post_tag' , 'db' );
$q [ 'tag_slug__in' ][] = $tag ;
}
2009-05-16 01:47:28 +02:00
} else if ( preg_match ( '/[+\s]+/' , $q [ 'tag' ]) || ! empty ( $q [ 'cat' ]) ) {
2007-09-03 20:14:05 +02:00
$tags = preg_split ( '/[+\s]+/' , $q [ 'tag' ]);
foreach ( ( array ) $tags as $tag ) {
$tag = sanitize_term_field ( 'slug' , $tag , 0 , 'post_tag' , 'db' );
$q [ 'tag_slug__and' ][] = $tag ;
}
} else {
$q [ 'tag' ] = sanitize_term_field ( 'slug' , $q [ 'tag' ], 0 , 'post_tag' , 'db' );
2007-10-13 20:53:28 +02:00
$q [ 'tag_slug__in' ][] = $q [ 'tag' ];
2007-09-03 20:14:05 +02:00
}
2007-09-03 05:24:23 +02:00
}
2009-02-19 20:17:06 +01:00
if ( ! empty ( $q [ 'category__in' ]) || ! empty ( $q [ 'meta_key' ]) || ! empty ( $q [ 'tag__in' ]) || ! empty ( $q [ 'tag_slug__in' ]) ) {
2007-09-03 05:24:23 +02:00
$groupby = " { $wpdb -> posts } .ID " ;
}
2009-05-16 01:47:28 +02:00
if ( ! empty ( $q [ 'tag__in' ]) && empty ( $q [ 'cat' ]) ) {
2007-10-11 19:43:49 +02:00
$join = " INNER JOIN $wpdb->term_relationships ON ( $wpdb->posts .ID = $wpdb->term_relationships .object_id) INNER JOIN $wpdb->term_taxonomy ON ( $wpdb->term_relationships .term_taxonomy_id = $wpdb->term_taxonomy .term_taxonomy_id) " ;
2007-09-03 05:24:23 +02:00
$whichcat .= " AND $wpdb->term_taxonomy .taxonomy = 'post_tag' " ;
$include_tags = " ' " . implode ( " ', ' " , $q [ 'tag__in' ]) . " ' " ;
$whichcat .= " AND $wpdb->term_taxonomy .term_id IN ( $include_tags ) " ;
2007-09-11 20:06:52 +02:00
$reqtag = is_term ( $q [ 'tag__in' ][ 0 ], 'post_tag' );
if ( ! empty ( $reqtag ) )
$q [ 'tag_id' ] = $reqtag [ 'term_id' ];
2007-09-03 05:24:23 +02:00
}
2009-05-16 01:47:28 +02:00
if ( ! empty ( $q [ 'tag_slug__in' ]) && empty ( $q [ 'cat' ]) ) {
2007-10-11 19:43:49 +02:00
$join = " INNER JOIN $wpdb->term_relationships ON ( $wpdb->posts .ID = $wpdb->term_relationships .object_id) INNER JOIN $wpdb->term_taxonomy ON ( $wpdb->term_relationships .term_taxonomy_id = $wpdb->term_taxonomy .term_taxonomy_id) INNER JOIN $wpdb->terms ON ( $wpdb->term_taxonomy .term_id = $wpdb->terms .term_id) " ;
2007-09-03 20:14:05 +02:00
$whichcat .= " AND $wpdb->term_taxonomy .taxonomy = 'post_tag' " ;
$include_tags = " ' " . implode ( " ', ' " , $q [ 'tag_slug__in' ]) . " ' " ;
$whichcat .= " AND $wpdb->terms .slug IN ( $include_tags ) " ;
2008-08-05 23:07:59 +02:00
$reqtag = get_term_by ( 'slug' , $q [ 'tag_slug__in' ][ 0 ], 'post_tag' );
2007-09-11 20:06:52 +02:00
if ( ! empty ( $reqtag ) )
2008-08-05 23:07:59 +02:00
$q [ 'tag_id' ] = $reqtag -> term_id ;
2007-09-03 20:14:05 +02:00
}
2007-09-03 05:24:23 +02:00
if ( ! empty ( $q [ 'tag__not_in' ]) ) {
2009-12-15 22:01:57 +01:00
$tag_string = " ' " . implode ( " ', ' " , $q [ 'tag__not_in' ]) . " ' " ;
$whichcat .= " AND $wpdb->posts .ID NOT IN ( SELECT tr.object_id FROM $wpdb->term_relationships AS tr INNER JOIN $wpdb->term_taxonomy AS tt ON tr.term_taxonomy_id = tt.term_taxonomy_id WHERE tt.taxonomy = 'post_tag' AND tt.term_id IN ( $tag_string ) ) " ;
2007-09-03 05:24:23 +02:00
}
2007-10-04 20:10:03 +02:00
// Tag and slug intersections.
2009-05-16 01:47:28 +02:00
$intersections = array ( 'category__and' => 'category' , 'tag__and' => 'post_tag' , 'tag_slug__and' => 'post_tag' , 'tag__in' => 'post_tag' , 'tag_slug__in' => 'post_tag' );
$tagin = array ( 'tag__in' , 'tag_slug__in' ); // These are used to make some exceptions below
2007-10-04 20:10:03 +02:00
foreach ( $intersections as $item => $taxonomy ) {
if ( empty ( $q [ $item ]) ) continue ;
2009-05-16 01:47:28 +02:00
if ( in_array ( $item , $tagin ) && empty ( $q [ 'cat' ]) ) continue ; // We should already have what we need if categories aren't being used
2009-05-25 01:47:49 +02:00
2007-10-04 20:10:03 +02:00
if ( $item != 'category__and' ) {
$reqtag = is_term ( $q [ $item ][ 0 ], 'post_tag' );
if ( ! empty ( $reqtag ) )
$q [ 'tag_id' ] = $reqtag [ 'term_id' ];
2007-09-11 20:06:52 +02:00
}
2009-06-01 19:12:12 +02:00
if ( in_array ( $item , array ( 'tag_slug__and' , 'tag_slug__in' ) ) )
$taxonomy_field = 'slug' ;
else
$taxonomy_field = 'term_id' ;
2007-10-04 20:10:03 +02:00
$q [ $item ] = array_unique ( $q [ $item ]);
2007-10-11 19:43:49 +02:00
$tsql = " SELECT p.ID FROM $wpdb->posts p INNER JOIN $wpdb->term_relationships tr ON (p.ID = tr.object_id) INNER JOIN $wpdb->term_taxonomy tt ON (tr.term_taxonomy_id = tt.term_taxonomy_id) INNER JOIN $wpdb->terms t ON (tt.term_id = t.term_id) " ;
2007-10-05 18:27:48 +02:00
$tsql .= " WHERE tt.taxonomy = ' $taxonomy ' AND t. $taxonomy_field IN (' " . implode ( " ', ' " , $q [ $item ]) . " ') " ;
2009-05-16 01:47:28 +02:00
if ( ! in_array ( $item , $tagin ) ) { // This next line is only helpful if we are doing an and relationship
$tsql .= " GROUP BY p.ID HAVING count(p.ID) = " . count ( $q [ $item ]);
}
2007-10-04 20:10:03 +02:00
$post_ids = $wpdb -> get_col ( $tsql );
if ( count ( $post_ids ) )
$whichcat .= " AND $wpdb->posts .ID IN ( " . implode ( ', ' , $post_ids ) . " ) " ;
else {
$whichcat = " AND 0 = 1 " ;
break ;
2007-09-03 05:24:23 +02:00
}
}
2008-03-23 18:02:11 +01:00
// Taxonomies
if ( $this -> is_tax ) {
2008-03-26 07:37:19 +01:00
if ( '' != $q [ 'taxonomy' ] ) {
$taxonomy = $q [ 'taxonomy' ];
$tt [ $taxonomy ] = $q [ 'term' ];
$terms = get_terms ( $q [ 'taxonomy' ], array ( 'slug' => $q [ 'term' ]));
2008-03-23 18:02:11 +01:00
} else {
2008-03-26 07:37:19 +01:00
foreach ( $GLOBALS [ 'wp_taxonomies' ] as $taxonomy => $t ) {
2009-04-30 21:05:32 +02:00
if ( $t -> query_var && '' != $q [ $t -> query_var ] ) {
2008-03-26 07:37:19 +01:00
$terms = get_terms ( $taxonomy , array ( 'slug' => $q [ $t -> query_var ]));
if ( ! is_wp_error ( $terms ) )
break ;
}
}
}
if ( is_wp_error ( $terms ) || empty ( $terms ) ) {
$whichcat = " AND 0 " ;
} else {
foreach ( $terms as $term )
$term_ids [] = $term -> term_id ;
$post_ids = get_objects_in_term ( $term_ids , $taxonomy );
if ( ! is_wp_error ( $post_ids ) && count ( $post_ids ) ) {
$whichcat .= " AND $wpdb->posts .ID IN ( " . implode ( ', ' , $post_ids ) . " ) " ;
$post_type = 'any' ;
$q [ 'post_status' ] = 'publish' ;
2009-05-21 02:10:04 +02:00
$post_status_join = true ;
2008-03-26 07:37:19 +01:00
} else {
$whichcat = " AND 0 " ;
}
2008-03-23 18:02:11 +01:00
}
}
2006-03-13 02:44:32 +01:00
// Author/user stuff
2007-03-09 05:05:28 +01:00
if ( empty ( $q [ 'author' ]) || ( $q [ 'author' ] == '0' ) ) {
2006-03-13 02:44:32 +01:00
$whichauthor = '' ;
} else {
$q [ 'author' ] = '' . urldecode ( $q [ 'author' ]) . '' ;
$q [ 'author' ] = addslashes_gpc ( $q [ 'author' ]);
2007-03-07 06:29:15 +01:00
if ( strpos ( $q [ 'author' ], '-' ) !== false ) {
2006-03-13 02:44:32 +01:00
$eq = '!=' ;
$andor = 'AND' ;
$q [ 'author' ] = explode ( '-' , $q [ 'author' ]);
2008-05-08 07:17:27 +02:00
$q [ 'author' ] = '' . absint ( $q [ 'author' ][ 1 ]);
2006-03-13 02:44:32 +01:00
} else {
$eq = '=' ;
$andor = 'OR' ;
}
$author_array = preg_split ( '/[,\s]+/' , $q [ 'author' ]);
2008-05-08 07:17:27 +02:00
$whichauthor .= " AND ( $wpdb->posts .post_author " . $eq . ' ' . absint ( $author_array [ 0 ]);
2006-03-13 02:44:32 +01:00
for ( $i = 1 ; $i < ( count ( $author_array )); $i = $i + 1 ) {
2008-05-08 07:17:27 +02:00
$whichauthor .= ' ' . $andor . " $wpdb->posts .post_author " . $eq . ' ' . absint ( $author_array [ $i ]);
2006-03-13 02:44:32 +01:00
}
$whichauthor .= ')' ;
}
2006-08-30 18:40:17 +02:00
// Author stuff for nice URLs
2006-03-13 02:44:32 +01:00
if ( '' != $q [ 'author_name' ]) {
2007-03-07 06:29:15 +01:00
if ( strpos ( $q [ 'author_name' ], '/' ) !== false ) {
2006-03-13 02:44:32 +01:00
$q [ 'author_name' ] = explode ( '/' , $q [ 'author_name' ]);
if ( $q [ 'author_name' ][ count ( $q [ 'author_name' ]) - 1 ]) {
$q [ 'author_name' ] = $q [ 'author_name' ][ count ( $q [ 'author_name' ]) - 1 ]; #no trailing slash
} else {
$q [ 'author_name' ] = $q [ 'author_name' ][ count ( $q [ 'author_name' ]) - 2 ]; #there was a trailling slash
}
}
$q [ 'author_name' ] = sanitize_title ( $q [ 'author_name' ]);
$q [ 'author' ] = $wpdb -> get_var ( " SELECT ID FROM $wpdb->users WHERE user_nicename=' " . $q [ 'author_name' ] . " ' " );
2009-04-17 23:25:11 +02:00
$q [ 'author' ] = get_user_by ( 'slug' , $q [ 'author_name' ]);
if ( $q [ 'author' ] )
2009-04-20 20:18:39 +02:00
$q [ 'author' ] = $q [ 'author' ] -> ID ;
2008-05-08 07:17:27 +02:00
$whichauthor .= " AND ( $wpdb->posts .post_author = " . absint ( $q [ 'author' ]) . ')' ;
2006-03-13 02:44:32 +01:00
}
2008-02-19 07:13:20 +01:00
// MIME-Type stuff for attachment browsing
2008-02-22 18:43:56 +01:00
if ( isset ( $q [ 'post_mime_type' ]) && '' != $q [ 'post_mime_type' ] )
2008-02-19 07:13:20 +01:00
$whichmimetype = wp_post_mime_type_where ( $q [ 'post_mime_type' ]);
$where .= $search . $whichcat . $whichauthor . $whichmimetype ;
2006-03-13 02:44:32 +01:00
2007-03-09 05:05:28 +01:00
if ( empty ( $q [ 'order' ]) || (( strtoupper ( $q [ 'order' ]) != 'ASC' ) && ( strtoupper ( $q [ 'order' ]) != 'DESC' )) )
$q [ 'order' ] = 'DESC' ;
2006-03-13 02:44:32 +01:00
// Order by
2007-03-09 05:05:28 +01:00
if ( empty ( $q [ 'orderby' ]) ) {
2008-03-23 18:02:11 +01:00
$q [ 'orderby' ] = " $wpdb->posts .post_date " . $q [ 'order' ];
2009-05-20 23:26:00 +02:00
} elseif ( 'none' == $q [ 'orderby' ] ) {
$q [ 'orderby' ] = '' ;
2006-03-13 02:44:32 +01:00
} else {
// Used to filter values
2009-10-29 19:02:55 +01:00
$allowed_keys = array ( 'author' , 'date' , 'title' , 'modified' , 'menu_order' , 'parent' , 'ID' , 'rand' , 'comment_count' );
2008-09-18 07:34:37 +02:00
if ( ! empty ( $q [ 'meta_key' ]) ) {
$allowed_keys [] = $q [ 'meta_key' ];
$allowed_keys [] = 'meta_value' ;
}
2006-03-13 02:44:32 +01:00
$q [ 'orderby' ] = urldecode ( $q [ 'orderby' ]);
$q [ 'orderby' ] = addslashes_gpc ( $q [ 'orderby' ]);
$orderby_array = explode ( ' ' , $q [ 'orderby' ]);
if ( empty ( $orderby_array ) )
$orderby_array [] = $q [ 'orderby' ];
$q [ 'orderby' ] = '' ;
for ( $i = 0 ; $i < count ( $orderby_array ); $i ++ ) {
// Only allow certain values for safety
$orderby = $orderby_array [ $i ];
2008-02-08 20:50:10 +01:00
switch ( $orderby ) {
case 'menu_order' :
2008-04-15 03:39:33 +02:00
break ;
2008-02-08 20:50:10 +01:00
case 'ID' :
2008-03-23 18:02:11 +01:00
$orderby = " $wpdb->posts .ID " ;
2008-02-08 20:50:10 +01:00
break ;
case 'rand' :
$orderby = 'RAND()' ;
break ;
2008-09-18 07:34:37 +02:00
case $q [ 'meta_key' ] :
case 'meta_value' :
$orderby = " $wpdb->postmeta .meta_value " ;
break ;
2009-10-29 19:02:55 +01:00
case 'comment_count' :
$orderby = " $wpdb->posts .comment_count " ;
2009-11-05 21:02:18 +01:00
break ;
2008-02-08 20:50:10 +01:00
default :
2008-03-23 18:02:11 +01:00
$orderby = " $wpdb->posts .post_ " . $orderby ;
2008-02-08 20:50:10 +01:00
}
2006-03-13 02:44:32 +01:00
if ( in_array ( $orderby_array [ $i ], $allowed_keys ) )
2007-12-14 07:20:42 +01:00
$q [ 'orderby' ] .= (( $i == 0 ) ? '' : ',' ) . $orderby ;
2006-03-13 02:44:32 +01:00
}
2008-02-22 21:48:28 +01:00
// append ASC or DESC at the end
if ( ! empty ( $q [ 'orderby' ]))
2007-12-14 07:20:42 +01:00
$q [ 'orderby' ] .= " { $q [ 'order' ] } " ;
2008-02-05 07:47:27 +01:00
2006-03-13 02:44:32 +01:00
if ( empty ( $q [ 'orderby' ]) )
2008-03-23 18:02:11 +01:00
$q [ 'orderby' ] = " $wpdb->posts .post_date " . $q [ 'order' ];
2006-03-13 02:44:32 +01:00
}
2010-02-16 22:13:44 +01:00
if ( is_array ( $post_type ) ) {
2009-11-05 17:08:53 +01:00
$post_type_cap = 'multiple_post_type' ;
2010-02-16 22:13:44 +01:00
} else {
2010-01-04 17:58:43 +01:00
$post_type_object = get_post_type_object ( $post_type );
if ( ! empty ( $post_type_object ) )
2010-01-15 23:11:12 +01:00
$post_type_cap = $post_type_object -> capability_type ;
2010-01-04 17:58:43 +01:00
else
$post_type_cap = $post_type ;
}
2009-09-23 00:57:01 +02:00
2009-10-06 16:43:05 +02:00
$exclude_post_types = '' ;
foreach ( get_post_types ( array ( 'exclude_from_search' => true ) ) as $_wp_post_type )
$exclude_post_types .= $wpdb -> prepare ( " AND $wpdb->posts .post_type != %s " , $_wp_post_type );
2009-02-04 21:32:27 +01:00
if ( 'any' == $post_type ) {
2009-10-06 16:43:05 +02:00
$where .= $exclude_post_types ;
2009-11-05 17:08:53 +01:00
} elseif ( ! empty ( $post_type ) && is_array ( $post_type ) ) {
2010-01-15 23:11:12 +01:00
$where .= " AND $wpdb->posts .post_type IN (' " . join ( " ', ' " , $post_type ) . " ') " ;
2009-08-15 05:28:03 +02:00
} elseif ( ! empty ( $post_type ) ) {
$where .= " AND $wpdb->posts .post_type = ' $post_type ' " ;
2010-02-16 22:13:44 +01:00
$post_type_object = get_post_type_object ( $post_type );
2009-02-04 21:32:27 +01:00
} elseif ( $this -> is_attachment ) {
2008-03-23 18:02:11 +01:00
$where .= " AND $wpdb->posts .post_type = 'attachment' " ;
2010-02-16 22:13:44 +01:00
$post_type_object = get_post_type_object ( 'attachment' );
2006-03-13 02:44:32 +01:00
} elseif ( $this -> is_page ) {
2008-03-23 18:02:11 +01:00
$where .= " AND $wpdb->posts .post_type = 'page' " ;
2010-02-16 22:13:44 +01:00
$post_type_object = get_post_type_object ( 'page' );
2009-08-15 12:57:56 +02:00
} else {
2008-03-23 18:02:11 +01:00
$where .= " AND $wpdb->posts .post_type = 'post' " ;
2010-02-16 22:13:44 +01:00
$post_type_object = get_post_type_object ( 'post' );
}
if ( ! empty ( $post_type_object ) ) {
$post_type_cap = $post_type_object -> capability_type ;
$edit_cap = $post_type_object -> edit_cap ;
$read_cap = $post_type_object -> read_cap ;
$edit_others_cap = $post_type_object -> edit_others_cap ;
$read_private_cap = $post_type_object -> read_private_cap ;
} else {
$edit_cap = 'edit_' . $post_type_cap ;
$read_cap = 'read_' . $post_type_cap ;
$edit_others_cap = 'edit_others_' . $post_type_cap . 's' ;
$read_private_cap = 'read_private_' . $post_type_cap . 's' ;
2007-05-28 20:34:06 +02:00
}
if ( isset ( $q [ 'post_status' ]) && '' != $q [ 'post_status' ] ) {
2008-03-23 18:02:11 +01:00
$statuswheres = array ();
2007-05-28 20:34:06 +02:00
$q_status = explode ( ',' , $q [ 'post_status' ]);
$r_status = array ();
2008-02-29 22:49:49 +01:00
$p_status = array ();
2010-02-10 23:36:50 +01:00
$e_status = array ();
2009-12-01 09:14:42 +01:00
if ( $q [ 'post_status' ] == 'any' ) {
2010-02-10 23:36:50 +01:00
foreach ( get_post_stati ( array ( 'exclude_from_search' => true ) ) as $status )
$e_status [] = " $wpdb->posts .post_status <> ' $status ' " ;
2009-12-01 09:14:42 +01:00
} else {
2010-02-06 18:51:24 +01:00
foreach ( get_post_stati () as $status ) {
2010-02-10 21:37:18 +01:00
if ( in_array ( $status , $q_status ) ) {
if ( 'private' == $status )
$p_status [] = " $wpdb->posts .post_status = ' $status ' " ;
else
$r_status [] = " $wpdb->posts .post_status = ' $status ' " ;
}
2010-02-06 18:51:24 +01:00
}
2009-12-01 09:14:42 +01:00
}
2008-02-29 22:49:49 +01:00
if ( empty ( $q [ 'perm' ] ) || 'readable' != $q [ 'perm' ] ) {
$r_status = array_merge ( $r_status , $p_status );
unset ( $p_status );
}
2010-02-10 23:36:50 +01:00
if ( ! empty ( $e_status ) ) {
$statuswheres [] = " ( " . join ( ' AND ' , $e_status ) . " ) " ;
}
2008-02-29 22:49:49 +01:00
if ( ! empty ( $r_status ) ) {
2010-02-16 22:13:44 +01:00
if ( ! empty ( $q [ 'perm' ] ) && 'editable' == $q [ 'perm' ] && ! current_user_can ( $edit_others_cap ) )
2008-03-23 18:02:11 +01:00
$statuswheres [] = " ( $wpdb->posts .post_author = $user_ID " . " AND ( " . join ( ' OR ' , $r_status ) . " )) " ;
2008-02-29 22:49:49 +01:00
else
2008-03-23 18:02:11 +01:00
$statuswheres [] = " ( " . join ( ' OR ' , $r_status ) . " ) " ;
2008-02-29 22:49:49 +01:00
}
if ( ! empty ( $p_status ) ) {
2010-02-16 22:13:44 +01:00
if ( ! empty ( $q [ 'perm' ] ) && 'readable' == $q [ 'perm' ] && ! current_user_can ( $read_private_cap ) )
2008-03-23 18:02:11 +01:00
$statuswheres [] = " ( $wpdb->posts .post_author = $user_ID " . " AND ( " . join ( ' OR ' , $p_status ) . " )) " ;
2008-02-29 22:49:49 +01:00
else
2008-03-23 18:02:11 +01:00
$statuswheres [] = " ( " . join ( ' OR ' , $p_status ) . " ) " ;
}
2009-05-21 02:10:04 +02:00
if ( $post_status_join ) {
2009-05-25 07:36:48 +02:00
$join .= " LEFT JOIN $wpdb->posts AS p2 ON ( $wpdb->posts .post_parent = p2.ID) " ;
2009-05-21 02:10:04 +02:00
foreach ( $statuswheres as $index => $statuswhere )
$statuswheres [ $index ] = " ( $statuswhere OR ( $wpdb->posts .post_status = 'inherit' AND " . str_replace ( $wpdb -> posts , 'p2' , $statuswhere ) . " )) " ;
}
2008-03-23 18:02:11 +01:00
foreach ( $statuswheres as $statuswhere )
$where .= " AND $statuswhere " ;
2007-05-28 20:34:06 +02:00
} elseif ( ! $this -> is_singular ) {
2008-03-23 18:02:11 +01:00
$where .= " AND ( $wpdb->posts .post_status = 'publish' " ;
2006-03-13 02:44:32 +01:00
2010-02-16 22:13:44 +01:00
// Add public states.
$public_states = get_post_stati ( array ( 'public' => true ) );
foreach ( ( array ) $public_states as $state ) {
if ( 'publish' == $state ) // Publish is hard-coded above.
continue ;
$where .= " OR $wpdb->posts .post_status = ' $state ' " ;
}
if ( is_admin () ) {
// Add protected states that should show in the admin all list.
$admin_all_states = get_post_stati ( array ( 'protected' => true , 'show_in_admin_all_list' => true ), 'names' , 'and' );
foreach ( ( array ) $admin_all_states as $state )
$where .= " OR $wpdb->posts .post_status = ' $state ' " ;
}
2007-06-14 04:25:30 +02:00
2007-05-28 22:39:24 +02:00
if ( is_user_logged_in () ) {
2010-02-16 22:13:44 +01:00
// Add private states that are limited to viewing by the author of a post or someone who has caps to read private states.
$private_states = get_post_stati ( array ( 'private' => true ) );
foreach ( ( array ) $private_states as $state )
$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 ' " ;
2007-05-28 22:39:24 +02:00
}
2006-05-12 01:13:35 +02:00
2007-05-28 20:34:06 +02:00
$where .= ')' ;
2006-03-13 02:44:32 +01:00
}
2008-05-03 22:08:32 +02:00
// postmeta queries
if ( ! empty ( $q [ 'meta_key' ]) || ! empty ( $q [ 'meta_value' ]) )
2009-05-11 06:56:00 +02:00
$join .= " JOIN $wpdb->postmeta ON ( $wpdb->posts .ID = $wpdb->postmeta .post_id) " ;
2008-08-09 07:36:14 +02:00
if ( ! empty ( $q [ 'meta_key' ]) )
2008-09-18 07:34:37 +02:00
$where .= $wpdb -> prepare ( " AND $wpdb->postmeta .meta_key = %s " , $q [ 'meta_key' ]);
if ( ! empty ( $q [ 'meta_value' ]) ) {
if ( ! isset ( $q [ 'meta_compare' ]) || empty ( $q [ 'meta_compare' ]) || ! in_array ( $q [ 'meta_compare' ], array ( '=' , '!=' , '>' , '>=' , '<' , '<=' )) )
$q [ 'meta_compare' ] = '=' ;
$where .= $wpdb -> prepare ( " AND $wpdb->postmeta .meta_value { $q [ 'meta_compare' ] } %s " , $q [ 'meta_value' ]);
}
2008-05-03 22:08:32 +02:00
2006-03-13 02:44:32 +01:00
// Apply filters on where and join prior to paging so that any
// manipulations to them are reflected in the paging by day queries.
2008-08-29 00:30:27 +02:00
if ( ! $q [ 'suppress_filters' ] ) {
$where = apply_filters ( 'posts_where' , $where );
$join = apply_filters ( 'posts_join' , $join );
}
2006-03-13 02:44:32 +01:00
// Paging
2007-03-09 05:05:28 +01:00
if ( empty ( $q [ 'nopaging' ]) && ! $this -> is_singular ) {
2008-01-29 19:48:38 +01:00
$page = absint ( $q [ 'paged' ]);
2006-03-13 02:44:32 +01:00
if ( empty ( $page )) {
$page = 1 ;
}
2006-11-08 22:22:35 +01:00
if ( empty ( $q [ 'offset' ]) ) {
$pgstrt = '' ;
2008-05-08 07:17:27 +02:00
$pgstrt = ( $page - 1 ) * $q [ 'posts_per_page' ] . ', ' ;
2006-11-08 22:22:35 +01:00
$limits = 'LIMIT ' . $pgstrt . $q [ 'posts_per_page' ];
} else { // we're ignoring $page and using 'offset'
2008-01-29 19:48:38 +01:00
$q [ 'offset' ] = absint ( $q [ 'offset' ]);
2006-11-08 22:22:35 +01:00
$pgstrt = $q [ 'offset' ] . ', ' ;
$limits = 'LIMIT ' . $pgstrt . $q [ 'posts_per_page' ];
2006-03-13 02:44:32 +01:00
}
}
2007-02-27 16:24:54 +01:00
2007-02-24 08:33:29 +01:00
// Comments feeds
if ( $this -> is_comment_feed && ( $this -> is_archive || $this -> is_search || ! $this -> is_singular ) ) {
if ( $this -> is_archive || $this -> is_search ) {
2009-05-11 06:56:00 +02:00
$cjoin = " JOIN $wpdb->posts ON ( $wpdb->comments .comment_post_ID = $wpdb->posts .ID) $join " ;
2007-02-24 08:33:29 +01:00
$cwhere = " WHERE comment_approved = '1' $where " ;
2009-05-06 00:41:26 +02:00
$cgroupby = " $wpdb->comments .comment_id " ;
2007-02-24 08:33:29 +01:00
} else { // Other non singular e.g. front
2009-05-11 06:56:00 +02:00
$cjoin = " JOIN $wpdb->posts ON ( $wpdb->comments .comment_post_ID = $wpdb->posts .ID ) " ;
2007-02-24 08:33:29 +01:00
$cwhere = " WHERE post_status = 'publish' AND comment_approved = '1' " ;
$cgroupby = '' ;
}
2007-02-27 16:24:54 +01:00
2008-08-29 00:30:27 +02:00
if ( ! $q [ 'suppress_filters' ] ) {
$cjoin = apply_filters ( 'comment_feed_join' , $cjoin );
$cwhere = apply_filters ( 'comment_feed_where' , $cwhere );
$cgroupby = apply_filters ( 'comment_feed_groupby' , $cgroupby );
2009-05-06 00:41:26 +02:00
$corderby = apply_filters ( 'comment_feed_orderby' , 'comment_date_gmt DESC' );
$climits = apply_filters ( 'comment_feed_limits' , 'LIMIT ' . get_option ( 'posts_per_rss' ));
2008-08-29 00:30:27 +02:00
}
2009-05-06 00:41:26 +02:00
$cgroupby = ( ! empty ( $cgroupby ) ) ? 'GROUP BY ' . $cgroupby : '' ;
$corderby = ( ! empty ( $corderby ) ) ? 'ORDER BY ' . $corderby : '' ;
2007-02-27 16:24:54 +01:00
2009-05-06 00:41:26 +02:00
$this -> comments = ( array ) $wpdb -> get_results ( " SELECT $distinct $wpdb->comments .* FROM $wpdb->comments $cjoin $cwhere $cgroupby $corderby $climits " );
2007-02-24 08:33:29 +01:00
$this -> comment_count = count ( $this -> comments );
$post_ids = array ();
2007-02-27 16:24:54 +01:00
2007-02-24 08:33:29 +01:00
foreach ( $this -> comments as $comment )
$post_ids [] = ( int ) $comment -> comment_post_ID ;
2007-02-27 16:24:54 +01:00
2007-02-24 08:33:29 +01:00
$post_ids = join ( ',' , $post_ids );
$join = '' ;
if ( $post_ids )
$where = " AND $wpdb->posts .ID IN ( $post_ids ) " ;
else
$where = " AND 0 " ;
}
2006-03-13 02:44:32 +01:00
2008-08-29 20:33:04 +02:00
$orderby = $q [ 'orderby' ];
2006-03-13 02:44:32 +01:00
// Apply post-paging filters on where and join. Only plugins that
2007-09-04 01:32:58 +02:00
// manipulate paging queries should use these hooks.
2008-08-29 00:30:27 +02:00
if ( ! $q [ 'suppress_filters' ] ) {
$where = apply_filters ( 'posts_where_paged' , $where );
$groupby = apply_filters ( 'posts_groupby' , $groupby );
$join = apply_filters ( 'posts_join_paged' , $join );
2008-08-29 20:33:04 +02:00
$orderby = apply_filters ( 'posts_orderby' , $orderby );
2008-08-29 00:30:27 +02:00
$distinct = apply_filters ( 'posts_distinct' , $distinct );
$limits = apply_filters ( 'post_limits' , $limits );
2008-09-18 07:34:37 +02:00
$fields = apply_filters ( 'posts_fields' , $fields );
2008-08-29 00:30:27 +02:00
}
2007-11-18 20:36:30 +01:00
// Announce current selection parameters. For use by caching plugins.
do_action ( 'posts_selection' , $where . $groupby . $orderby . $limits . $join );
// Filter again for the benefit of caching plugins. Regular plugins should use the hooks above.
2008-08-29 00:30:27 +02:00
if ( ! $q [ 'suppress_filters' ] ) {
$where = apply_filters ( 'posts_where_request' , $where );
$groupby = apply_filters ( 'posts_groupby_request' , $groupby );
$join = apply_filters ( 'posts_join_request' , $join );
$orderby = apply_filters ( 'posts_orderby_request' , $orderby );
$distinct = apply_filters ( 'posts_distinct_request' , $distinct );
$fields = apply_filters ( 'posts_fields_request' , $fields );
$limits = apply_filters ( 'post_limits_request' , $limits );
}
2007-11-18 20:36:30 +01:00
if ( ! empty ( $groupby ) )
$groupby = 'GROUP BY ' . $groupby ;
if ( ! empty ( $orderby ) )
$orderby = 'ORDER BY ' . $orderby ;
2006-11-08 10:13:11 +01:00
$found_rows = '' ;
if ( ! empty ( $limits ) )
$found_rows = 'SQL_CALC_FOUND_ROWS' ;
2006-12-01 11:15:15 +01:00
2008-08-29 20:33:04 +02:00
$this -> request = " SELECT $found_rows $distinct $fields FROM $wpdb->posts $join WHERE 1=1 $where $groupby $orderby $limits " ;
2008-08-29 00:30:27 +02:00
if ( ! $q [ 'suppress_filters' ] )
2008-08-29 20:33:04 +02:00
$this -> request = apply_filters ( 'posts_request' , $this -> request );
2006-03-13 02:44:32 +01:00
$this -> posts = $wpdb -> get_results ( $this -> request );
2007-08-22 20:03:26 +02:00
// Raw results filter. Prior to status checks.
2008-08-29 00:30:27 +02:00
if ( ! $q [ 'suppress_filters' ] )
$this -> posts = apply_filters ( 'posts_results' , $this -> posts );
2007-02-24 08:33:29 +01:00
2010-02-18 02:52:37 +01:00
// Turn each row into a classed object, e.g. wp_post, wp_comment.
if ( is_array ( $this -> posts ) )
$this -> posts = array_map ( array ( 'wp_row' , 'get' ), $this -> posts );
2008-01-29 20:01:39 +01:00
if ( ! empty ( $this -> posts ) && $this -> is_comment_feed && $this -> is_singular ) {
2007-02-24 08:33:29 +01:00
$cjoin = apply_filters ( 'comment_feed_join' , '' );
2008-01-29 20:01:39 +01:00
$cwhere = apply_filters ( 'comment_feed_where' , " WHERE comment_post_ID = ' { $this -> posts [ 0 ] -> ID } ' AND comment_approved = '1' " );
2009-05-06 00:41:26 +02:00
$cgroupby = apply_filters ( 'comment_feed_groupby' , '' );
$cgroupby = ( ! empty ( $cgroupby ) ) ? 'GROUP BY ' . $cgroupby : '' ;
$corderby = apply_filters ( 'comment_feed_orderby' , 'comment_date_gmt DESC' );
$corderby = ( ! empty ( $corderby ) ) ? 'ORDER BY ' . $corderby : '' ;
$climits = apply_filters ( 'comment_feed_limits' , 'LIMIT ' . get_option ( 'posts_per_rss' ));
$comments_request = " SELECT $wpdb->comments .* FROM $wpdb->comments $cjoin $cwhere $cgroupby $corderby $climits " ;
2007-02-24 08:33:29 +01:00
$this -> comments = $wpdb -> get_results ( $comments_request );
$this -> comment_count = count ( $this -> comments );
}
2007-02-27 16:24:54 +01:00
2006-11-08 10:13:11 +01:00
if ( ! empty ( $limits ) ) {
2006-12-01 11:15:15 +01:00
$found_posts_query = apply_filters ( 'found_posts_query' , 'SELECT FOUND_ROWS()' );
$this -> found_posts = $wpdb -> get_var ( $found_posts_query );
$this -> found_posts = apply_filters ( 'found_posts' , $this -> found_posts );
2006-11-19 01:58:15 +01:00
$this -> max_num_pages = ceil ( $this -> found_posts / $q [ 'posts_per_page' ]);
2006-11-08 10:13:11 +01:00
}
2007-02-27 16:24:54 +01:00
2006-03-13 02:44:32 +01:00
// Check post status to determine if post should be displayed.
if ( ! empty ( $this -> posts ) && ( $this -> is_single || $this -> is_page ) ) {
$status = get_post_status ( $this -> posts [ 0 ]);
2010-02-16 22:13:44 +01:00
$post_status_obj = get_post_status_object ( $status );
2006-03-13 02:44:32 +01:00
//$type = get_post_type($this->posts[0]);
2010-02-16 22:13:44 +01:00
if ( ! $post_status_obj -> public ) {
2006-03-13 02:44:32 +01:00
if ( ! is_user_logged_in () ) {
// User must be logged in to view unpublished posts.
$this -> posts = array ();
} else {
2010-02-16 22:13:44 +01:00
if ( $post_status_obj -> protected ) {
2006-03-13 02:44:32 +01:00
// User must have edit permissions on the draft to preview.
2010-02-16 22:13:44 +01:00
if ( ! current_user_can ( $edit_cap , $this -> posts [ 0 ] -> ID )) {
2006-03-13 02:44:32 +01:00
$this -> posts = array ();
} else {
$this -> is_preview = true ;
2010-02-16 22:13:44 +01:00
if ( 'future' != $status )
$this -> posts [ 0 ] -> post_date = current_time ( 'mysql' );
2006-03-13 02:44:32 +01:00
}
2010-02-16 22:13:44 +01:00
} elseif ( $post_status_obj -> private ) {
if ( ! current_user_can ( $read_cap , $this -> posts [ 0 ] -> ID ) )
2006-03-13 02:44:32 +01:00
$this -> posts = array ();
2010-02-16 22:13:44 +01:00
} else {
$this -> posts = array ();
2006-03-13 02:44:32 +01:00
}
}
}
2008-11-04 14:00:12 +01:00
2010-02-16 22:13:44 +01:00
if ( $this -> is_preview && current_user_can ( $edit_cap , $this -> posts [ 0 ] -> ID ) )
2008-11-04 14:00:12 +01:00
$this -> posts [ 0 ] = apply_filters ( 'the_preview' , $this -> posts [ 0 ]);
2006-03-13 02:44:32 +01:00
}
2008-08-05 07:48:21 +02:00
// Put sticky posts at the top of the posts array
$sticky_posts = get_option ( 'sticky_posts' );
2009-05-07 09:05:35 +02:00
if ( $this -> is_home && $page <= 1 && is_array ( $sticky_posts ) && ! empty ( $sticky_posts ) && ! $q [ 'caller_get_posts' ] ) {
2008-08-05 07:48:21 +02:00
$num_posts = count ( $this -> posts );
$sticky_offset = 0 ;
// Loop over posts and relocate stickies to the front.
for ( $i = 0 ; $i < $num_posts ; $i ++ ) {
if ( in_array ( $this -> posts [ $i ] -> ID , $sticky_posts ) ) {
$sticky_post = $this -> posts [ $i ];
// Remove sticky from current position
array_splice ( $this -> posts , $i , 1 );
// Move to front, after other stickies
array_splice ( $this -> posts , $sticky_offset , 0 , array ( $sticky_post ));
// Increment the sticky offset. The next sticky will be placed at this offset.
$sticky_offset ++ ;
// Remove post from sticky posts array
$offset = array_search ( $sticky_post -> ID , $sticky_posts );
array_splice ( $sticky_posts , $offset , 1 );
}
}
// Fetch sticky posts that weren't in the query results
2008-08-13 20:21:52 +02:00
if ( ! empty ( $sticky_posts ) ) {
$stickies__in = implode ( ',' , array_map ( 'absint' , $sticky_posts ));
2009-11-05 16:52:01 +01:00
// honor post type(s) if not set to any
$stickies_where = '' ;
if ( 'any' != $post_type && '' != $post_type ) {
if ( is_array ( $post_type ) ) {
$post_types = join ( " ', ' " , $post_type );
} else {
$post_types = $post_type ;
}
$stickies_where = " AND $wpdb->posts .post_type IN (' " . $post_types . " ') " ;
}
$stickies = $wpdb -> get_results ( " SELECT * FROM $wpdb->posts WHERE $wpdb->posts .ID IN ( $stickies__in ) $stickies_where " );
2008-09-04 21:19:32 +02:00
/** @todo Make sure post is published or viewable by the current user */
2008-08-13 20:21:52 +02:00
foreach ( $stickies as $sticky_post ) {
if ( 'publish' != $sticky_post -> post_status )
continue ;
2010-02-13 07:08:15 +01:00
array_splice ( $this -> posts , $sticky_offset , 0 , array ( $sticky_post ));
$sticky_offset ++ ;
2008-08-13 20:21:52 +02:00
}
2008-08-05 07:48:21 +02:00
}
}
2008-08-29 00:30:27 +02:00
if ( ! $q [ 'suppress_filters' ] )
$this -> posts = apply_filters ( 'the_posts' , $this -> posts );
2006-11-23 16:38:22 +01:00
2009-10-19 23:28:44 +02:00
$this -> post_count = count ( $this -> posts );
// Sanitize before caching so it'll only get done once
for ( $i = 0 ; $i < $this -> post_count ; $i ++ ) {
$this -> posts [ $i ] = sanitize_post ( $this -> posts [ $i ], 'raw' );
}
2006-03-13 02:44:32 +01:00
update_post_caches ( $this -> posts );
if ( $this -> post_count > 0 ) {
$this -> post = $this -> posts [ 0 ];
}
return $this -> posts ;
}
2008-09-04 21:19:32 +02:00
/**
* Setup the next post and iterate current post index .
*
* @ since 1.5 . 0
* @ access public
*
* @ return object Next post .
*/
2006-03-13 02:44:32 +01:00
function next_post () {
2006-11-19 08:56:05 +01:00
2006-03-13 02:44:32 +01:00
$this -> current_post ++ ;
$this -> post = $this -> posts [ $this -> current_post ];
return $this -> post ;
}
2008-09-04 21:19:32 +02:00
/**
* Sets up the current post .
*
* Retrieves the next post , sets up the post , sets the 'in the loop'
* property to true .
*
* @ since 1.5 . 0
* @ access public
* @ uses $post
2009-05-19 18:13:50 +02:00
* @ uses do_action_ref_array () Calls 'loop_start' if loop has just started
2008-09-04 21:19:32 +02:00
*/
2006-03-13 02:44:32 +01:00
function the_post () {
global $post ;
$this -> in_the_loop = true ;
2009-05-27 01:57:01 +02:00
if ( $this -> current_post == - 1 ) // loop has just started
2009-05-19 18:13:50 +02:00
do_action_ref_array ( 'loop_start' , array ( & $this ));
2009-05-27 01:57:01 +02:00
$post = $this -> next_post ();
setup_postdata ( $post );
2006-03-13 02:44:32 +01:00
}
2008-09-04 21:19:32 +02:00
/**
* Whether there are more posts available in the loop .
*
* Calls action 'loop_end' , when the loop is complete .
*
* @ since 1.5 . 0
* @ access public
2009-05-19 18:13:50 +02:00
* @ uses do_action_ref_array () Calls 'loop_end' if loop is ended
2008-09-04 21:19:32 +02:00
*
* @ return bool True if posts are available , false if end of loop .
*/
2006-03-13 02:44:32 +01:00
function have_posts () {
if ( $this -> current_post + 1 < $this -> post_count ) {
return true ;
2008-06-24 21:58:54 +02:00
} elseif ( $this -> current_post + 1 == $this -> post_count && $this -> post_count > 0 ) {
2009-05-19 18:13:50 +02:00
do_action_ref_array ( 'loop_end' , array ( & $this ));
2006-03-13 02:44:32 +01:00
// Do some cleaning up after the loop
$this -> rewind_posts ();
}
$this -> in_the_loop = false ;
return false ;
}
2008-09-04 21:19:32 +02:00
/**
* Rewind the posts and reset post index .
*
* @ since 1.5 . 0
* @ access public
*/
2006-03-13 02:44:32 +01:00
function rewind_posts () {
$this -> current_post = - 1 ;
if ( $this -> post_count > 0 ) {
$this -> post = $this -> posts [ 0 ];
}
}
2007-02-27 16:24:54 +01:00
2008-09-04 21:19:32 +02:00
/**
* Iterate current comment index and return comment object .
*
* @ since 2.2 . 0
* @ access public
*
* @ return object Comment object .
*/
2007-02-24 08:33:29 +01:00
function next_comment () {
$this -> current_comment ++ ;
2007-02-27 16:24:54 +01:00
2007-02-24 08:33:29 +01:00
$this -> comment = $this -> comments [ $this -> current_comment ];
return $this -> comment ;
}
2007-02-27 16:24:54 +01:00
2008-09-04 21:19:32 +02:00
/**
* Sets up the current comment .
*
* @ since 2.2 . 0
* @ access public
* @ global object $comment Current comment .
* @ uses do_action () Calls 'comment_loop_start' hook when first comment is processed .
*/
2007-02-24 08:33:29 +01:00
function the_comment () {
global $comment ;
2007-02-27 16:24:54 +01:00
2007-02-24 08:33:29 +01:00
$comment = $this -> next_comment ();
2007-02-27 16:24:54 +01:00
2007-02-24 08:33:29 +01:00
if ( $this -> current_comment == 0 ) {
do_action ( 'comment_loop_start' );
}
}
2007-02-27 16:24:54 +01:00
2008-09-04 21:19:32 +02:00
/**
* Whether there are more comments available .
*
* Automatically rewinds comments when finished .
*
* @ since 2.2 . 0
* @ access public
*
* @ return bool True , if more comments . False , if no more posts .
*/
2007-02-24 08:33:29 +01:00
function have_comments () {
if ( $this -> current_comment + 1 < $this -> comment_count ) {
return true ;
} elseif ( $this -> current_comment + 1 == $this -> comment_count ) {
$this -> rewind_comments ();
}
2007-02-27 16:24:54 +01:00
2007-02-24 08:33:29 +01:00
return false ;
}
2007-02-27 16:24:54 +01:00
2008-09-04 21:19:32 +02:00
/**
* Rewind the comments , resets the comment index and comment to first .
*
* @ since 2.2 . 0
* @ access public
*/
2007-02-24 08:33:29 +01:00
function rewind_comments () {
$this -> current_comment = - 1 ;
if ( $this -> comment_count > 0 ) {
$this -> comment = $this -> comments [ 0 ];
}
}
2006-11-19 08:56:05 +01:00
2008-09-04 21:19:32 +02:00
/**
* Sets up the WordPress query by parsing query string .
*
* @ since 1.5 . 0
* @ access public
*
* @ param string $query URL query string .
* @ return array List of posts .
*/
2006-03-13 02:44:32 +01:00
function & query ( $query ) {
$this -> parse_query ( $query );
return $this -> get_posts ();
}
2008-09-04 21:19:32 +02:00
/**
* Retrieve queried object .
*
* If queried object is not set , then the queried object will be set from
* the category , tag , taxonomy , posts page , single post , page , or author
* query variable . After it is set up , it will be returned .
*
* @ since 1.5 . 0
* @ access public
*
* @ return object
*/
2006-03-13 02:44:32 +01:00
function get_queried_object () {
2010-02-08 23:05:05 +01:00
if ( isset ( $this -> queried_object ) )
2006-03-13 02:44:32 +01:00
return $this -> queried_object ;
$this -> queried_object = NULL ;
$this -> queried_object_id = 0 ;
2010-02-08 23:05:05 +01:00
if ( $this -> is_category ) {
2006-03-13 02:44:32 +01:00
$cat = $this -> get ( 'cat' );
$category = & get_category ( $cat );
2008-11-24 07:14:40 +01:00
if ( is_wp_error ( $category ) )
return NULL ;
2006-03-13 02:44:32 +01:00
$this -> queried_object = & $category ;
2007-03-23 01:59:21 +01:00
$this -> queried_object_id = ( int ) $cat ;
2010-02-08 23:05:05 +01:00
} elseif ( $this -> is_tag ) {
2007-08-21 20:39:45 +02:00
$tag_id = $this -> get ( 'tag_id' );
$tag = & get_term ( $tag_id , 'post_tag' );
2007-09-18 18:32:22 +02:00
if ( is_wp_error ( $tag ) )
2008-11-24 07:14:40 +01:00
return NULL ;
2007-08-21 20:39:45 +02:00
$this -> queried_object = & $tag ;
$this -> queried_object_id = ( int ) $tag_id ;
2010-02-08 23:05:05 +01:00
} elseif ( $this -> is_tax ) {
2008-03-23 18:02:11 +01:00
$tax = $this -> get ( 'taxonomy' );
$slug = $this -> get ( 'term' );
$term = & get_terms ( $tax , array ( 'slug' => $slug ));
2008-05-16 05:57:09 +02:00
if ( is_wp_error ( $term ) || empty ( $term ) )
2008-11-24 07:14:40 +01:00
return NULL ;
2008-05-16 05:57:09 +02:00
$term = $term [ 0 ];
2008-03-23 18:02:11 +01:00
$this -> queried_object = $term ;
$this -> queried_object_id = $term -> term_id ;
2010-02-08 23:05:05 +01:00
} elseif ( $this -> is_posts_page ) {
2006-07-20 04:05:25 +02:00
$this -> queried_object = & get_page ( get_option ( 'page_for_posts' ));
2007-03-23 01:59:21 +01:00
$this -> queried_object_id = ( int ) $this -> queried_object -> ID ;
2010-02-08 23:05:05 +01:00
} elseif ( $this -> is_single ) {
2006-03-13 02:44:32 +01:00
$this -> queried_object = $this -> post ;
2007-03-23 01:59:21 +01:00
$this -> queried_object_id = ( int ) $this -> post -> ID ;
2010-02-08 23:05:05 +01:00
} elseif ( $this -> is_page ) {
2006-03-13 02:44:32 +01:00
$this -> queried_object = $this -> post ;
2007-03-23 01:59:21 +01:00
$this -> queried_object_id = ( int ) $this -> post -> ID ;
2010-02-08 23:05:05 +01:00
} elseif ( $this -> is_author ) {
2007-03-23 01:59:21 +01:00
$author_id = ( int ) $this -> get ( 'author' );
2006-03-13 02:44:32 +01:00
$author = get_userdata ( $author_id );
$this -> queried_object = $author ;
$this -> queried_object_id = $author_id ;
}
return $this -> queried_object ;
}
2008-09-04 21:19:32 +02:00
/**
* Retrieve ID of the current queried object .
*
* @ since 1.5 . 0
* @ access public
*
* @ return int
*/
2006-03-13 02:44:32 +01:00
function get_queried_object_id () {
$this -> get_queried_object ();
if ( isset ( $this -> queried_object_id )) {
return $this -> queried_object_id ;
}
return 0 ;
}
2008-09-04 21:19:32 +02:00
/**
* PHP4 type constructor .
*
* Sets up the WordPress query , if parameter is not empty .
*
* @ since 1.5 . 0
* @ access public
*
* @ param string $query URL query string .
* @ return WP_Query
*/
2006-03-13 02:44:32 +01:00
function WP_Query ( $query = '' ) {
if ( ! empty ( $query )) {
$this -> query ( $query );
}
}
}
2008-09-04 21:19:32 +02:00
/**
* Redirect old slugs to the correct permalink .
*
* Attempts to find the current slug from the past slugs .
*
* @ since 2.1 . 0
* @ uses $wp_query
* @ uses $wpdb
*
* @ return null If no link is found , null is returned .
*/
2006-11-30 09:48:56 +01:00
function wp_old_slug_redirect () {
global $wp_query ;
if ( is_404 () && '' != $wp_query -> query_vars [ 'name' ] ) :
global $wpdb ;
$query = " SELECT post_id FROM $wpdb->postmeta , $wpdb->posts WHERE ID = post_id AND meta_key = '_wp_old_slug' AND meta_value=' " . $wp_query -> query_vars [ 'name' ] . " ' " ;
// if year, monthnum, or day have been specified, make our query more precise
// just in case there are multiple identical _wp_old_slug values
if ( '' != $wp_query -> query_vars [ 'year' ] )
$query .= " AND YEAR(post_date) = ' { $wp_query -> query_vars [ 'year' ] } ' " ;
if ( '' != $wp_query -> query_vars [ 'monthnum' ] )
$query .= " AND MONTH(post_date) = ' { $wp_query -> query_vars [ 'monthnum' ] } ' " ;
if ( '' != $wp_query -> query_vars [ 'day' ] )
$query .= " AND DAYOFMONTH(post_date) = ' { $wp_query -> query_vars [ 'day' ] } ' " ;
$id = ( int ) $wpdb -> get_var ( $query );
if ( ! $id )
return ;
$link = get_permalink ( $id );
if ( ! $link )
return ;
wp_redirect ( $link , '301' ); // Permanent redirect
exit ;
endif ;
}
2008-09-04 21:19:32 +02:00
/**
* Setup global post data .
*
* @ since 1.5 . 0
*
* @ param object $post Post data .
2009-05-20 18:05:23 +02:00
* @ uses do_action_ref_array () Calls 'the_post'
2008-09-04 21:19:32 +02:00
* @ return bool True when finished .
*/
2006-06-08 04:22:16 +02:00
function setup_postdata ( $post ) {
2007-12-06 20:49:33 +01:00
global $id , $authordata , $day , $currentmonth , $page , $pages , $multipage , $more , $numpages ;
2006-06-08 04:22:16 +02:00
2007-03-23 01:59:21 +01:00
$id = ( int ) $post -> ID ;
2006-06-08 04:22:16 +02:00
$authordata = get_userdata ( $post -> post_author );
2009-05-14 04:00:32 +02:00
$day = mysql2date ( 'd.m.y' , $post -> post_date , false );
$currentmonth = mysql2date ( 'm' , $post -> post_date , false );
2006-06-08 04:22:16 +02:00
$numpages = 1 ;
$page = get_query_var ( 'page' );
if ( ! $page )
$page = 1 ;
2008-02-09 01:19:48 +01:00
if ( is_single () || is_page () || is_feed () )
2006-06-08 04:22:16 +02:00
$more = 1 ;
$content = $post -> post_content ;
2008-08-27 22:47:01 +02:00
if ( strpos ( $content , '<!--nextpage-->' ) ) {
2006-06-08 04:22:16 +02:00
if ( $page > 1 )
$more = 1 ;
$multipage = 1 ;
$content = str_replace ( " \n <!--nextpage--> \n " , '<!--nextpage-->' , $content );
$content = str_replace ( " \n <!--nextpage--> " , '<!--nextpage-->' , $content );
$content = str_replace ( " <!--nextpage--> \n " , '<!--nextpage-->' , $content );
$pages = explode ( '<!--nextpage-->' , $content );
$numpages = count ( $pages );
} else {
$pages [ 0 ] = $post -> post_content ;
$multipage = 0 ;
}
2009-05-27 01:57:01 +02:00
do_action_ref_array ( 'the_post' , array ( & $post ));
2009-09-14 16:03:32 +02:00
2006-06-08 04:22:16 +02:00
return true ;
}
2009-05-21 02:10:04 +02:00
?>