WP_Query::init()publicWP 1.5.0

Initiates object properties and sets default values.

Method of the class: WP_Query{}

No Hooks.

Return

null. Nothing (null).

Usage

global $wp_query;
$wp_query->init();

Changelog

Since 1.5.0 Introduced.

WP_Query::init() code WP 6.4.3

public function init() {
	unset( $this->posts );
	unset( $this->query );
	$this->query_vars = array();
	unset( $this->queried_object );
	unset( $this->queried_object_id );
	$this->post_count   = 0;
	$this->current_post = -1;
	$this->in_the_loop  = false;
	$this->before_loop  = true;
	unset( $this->request );
	unset( $this->post );
	unset( $this->comments );
	unset( $this->comment );
	$this->comment_count         = 0;
	$this->current_comment       = -1;
	$this->found_posts           = 0;
	$this->max_num_pages         = 0;
	$this->max_num_comment_pages = 0;

	$this->init_query_flags();
}