Summery Summery
Performs an HTTP request and returns its response.
Syntax Syntax
Description Description
There are other API functions available which abstract away the HTTP method:
- Default ‘GET’ for wp_remote_get()
- Default ‘POST’ for wp_remote_post()
- Default ‘HEAD’ for wp_remote_head()
Parameters Parameters
- $url
-
(Required) URL to retrieve.
- $args
-
(Optional) Request arguments.
Default value: array()
Return Return
(array|WP_Error) The response array or a WP_Error on failure.
- 'headers'
(string[]) Array of response headers keyed by their name. - 'body'
(string) Response body. - 'response'
(array) Data about the HTTP response.- 'code'
(int|false) HTTP response code. - 'message'
(string|false) HTTP response message.
- 'code'
- 'cookies'
(WP_HTTP_Cookie[]) Array of response cookies. - 'http_response'
(WP_HTTP_Requests_Response|null) Raw HTTP response object.
Source Source
File: wp-includes/http.php
return $http->request( $url, $args ); } /**
Advertisement
Changelog Changelog
Version | Description |
---|---|
2.7.0 | Introduced. |
See also See also
- WP_Http::request(): For information on default arguments.