WP_Http::head() public WP 2.7.0
Uses the HEAD HTTP method.
Used for sending data that is expected to be in the body.
{} It's a method of the class: WP_Http{}
No Hooks.
Return
Array|WP_Error
. Array containing 'headers', 'body', 'response', 'cookies', 'filename'. A WP_Error instance upon error.
Usage
$WP_Http = new WP_Http(); $WP_Http->head( $url, $args );
- $url(string) (required)
- The request URL.
- $args(string|array)
- Override the defaults.
Changelog
Since 2.7.0 | Introduced. |
Code of WP_Http::head() WP Http::head WP 5.7.1
public function head( $url, $args = array() ) {
$defaults = array( 'method' => 'HEAD' );
$parsed_args = wp_parse_args( $args, $defaults );
return $this->request( $url, $parsed_args );
}