WP::query_posts()
Set up the Loop based on the query variables.
Метод класса: WP{}
Хуков нет.
Возвращает
null
. Ничего (null).
Использование
global $wp; $wp->query_posts();
Заметки
- Global. WP_Query. $wp_the_query WordPress Query object.
Список изменений
С версии 2.0.0 | Введена. |
Код WP::query_posts() WP::query posts WP 6.6.2
public function query_posts() { global $wp_the_query; $this->build_query_string(); $wp_the_query->query( $this->query_vars ); }