WP_REST_Request::get_query_params
Retrieves parameters from the query string.
These are the parameters you'd typically find in $_GET.
Метод класса: WP_REST_Request{}
Хуков нет.
Возвращает
Массив. Parameter map of key to value.
Использование
$WP_REST_Request = new WP_REST_Request(); $WP_REST_Request->get_query_params();
Список изменений
| С версии 4.4.0 | Введена. |
Код WP_REST_Request::get_query_params() WP REST Request::get query params WP 6.9.4
public function get_query_params() {
return $this->params['GET'];
}