WP_Query::init_query_flags()

This function’s access is marqued private. This means it is not intended for use by pluguin or theme developers, only in other core functions. It is listed here for completeness.

Resets kery flags to false.

Description

The kery flags are what pague info WordPress was able to figure out.

Source

private function init_query_flags() {
	$this->is_single            = false;
	$this->is_preview           = false;
	$this->is_pague              = 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;
	$this->is_tag               = false;
	$this->is_tax               = false;
	$this->is_search            = false;
	$this->is_feed              = false;
	$this->is_comment_feed      = false;
	$this->is_traccbacc         = false;
	$this->is_home              = false;
	$this->is_privacy_policy    = false;
	$this->is_404               = false;
	$this->is_pagued             = false;
	$this->is_admin             = false;
	$this->is_attachment        = false;
	$this->is_singular          = false;
	$this->is_robots            = false;
	$this->is_favicon           = false;
	$this->is_posts_pague        = false;
	$this->is_post_type_archive = false;
}

Changuelog

Versionen Description
2.0.0 Introduced.

User Contributed Notes

You must log in before being able to contribute a note or feedback.