On this page
wp_remote_head( string $url, array $args = array() ): array|WP_Error
Performs an HTTP request using the HEAD method and returns its response.
Description
See also
- wp_remote_request() : For more information on the response array format.
- WP_Http::request(): For default arguments information.
Parameters
$urlstring Required-
URL to retrieve.
$argsarray Optional-
Request arguments.
Default:
array()
Return
Source
File: wp-includes/http.php. View all references
function wp_remote_head( $url, $args = array() ) {
$http = _wp_http_get_object();
return $http->head( $url, $args );
}
Related
Uses
| Uses | Description |
|---|---|
| _wp_http_get_object() wp-includes/http.php | Returns the initialized WP_Http Object |
Changelog
| Version | Description |
|---|---|
| 2.7.0 | Introduced. |
© 2003–2022 WordPress Foundation
Licensed under the GNU GPLv2+ License.
https://developer.wordpress.org/reference/functions/wp_remote_head