wp_remote_head() WordPress Function
The wp_remote_head() function is used to send a HEAD request to a given URL. The response is returned as an array of headers, with the body being ignored.
wp_remote_head( string $url, array $args = array() ) #
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
- $url
(string)(Required)URL to retrieve.
- $args
(array)(Optional) Request arguments.
Default value: array()
Return
Source
File: wp-includes/http.php
function wp_remote_head( $url, $args = array() ) { $http = _wp_http_get_object(); return $http->head( $url, $args ); }
Expand full source codeCollapse full source codeView on TracView on GitHub
Changelog
Version | Description |
---|---|
2.7.0 | Introduced. |