wp_safe_remote_head

Advertisement

Summery Summery

Retrieve the raw response from a safe HTTP request using the HEAD method.

Syntax Syntax

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

Description Description

This function is ideal when the HTTP request is being made to an arbitrary URL. The URL is validated to avoid redirection and request forgery attacks.

Parameters Parameters

$url

(Required) URL to retrieve.

$args

(Optional) Request arguments.

Default value: array()

Return Return

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

Source Source

File: wp-includes/http.php

	$http                       = _wp_http_get_object();
	return $http->head( $url, $args );
}

/**

Advertisement

Changelog Changelog

Changelog
Version Description
3.6.0 Introduced.

See also See also

Advertisement

Leave a Reply