wp_remote_head( string $url, array $args = array() )

Performs an HTTP request using the HEAD method and returns its response.

Description

See also

Parameters

$url

(string) (Required) URL to retrieve.

$args

(array) (Optional) Request arguments.

Default value: array()

Return

(array|WP_Error) The response or WP_Error on failure.

Source

File: wp-includes/http.php

function wp_remote_head( $url, $args = array() ) {
	$http = _wp_http_get_object();
	return $http->head( $url, $args );
}

Changelog

Version Description
2.7.0 Introduced.

© 2003–2021 WordPress Foundation
Licensed under the GNU GPLv2+ License.
https://developer.wordpress.org/reference/functions/wp_remote_head