WP_Query::is_main_query()publicWP 3.3.0

Determines whether the query is the main query.

Метод класса: WP_Query{}

Хуков нет.

Возвращает

true|false. Whether the query is the main query.

Использование

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

Заметки

  • Global. WP_Query. $wp_the_query WordPress Query object.

Список изменений

С версии 3.3.0 Введена.

Код WP_Query::is_main_query() WP 6.7.1

public function is_main_query() {
	global $wp_the_query;
	return $wp_the_query === $this;
}