wpseek.com
Outil de recherche WordPress pour les développeurs et auteurs de thèmes



wp_safe_remote_head › WordPress Function

Depuis3.6.0
Dépréciéen/a
wp_safe_remote_head ( $url, $args = array() )
Paramètres: (2)
  • (string) $url URL to retrieve.
    Requis: Oui
  • (array) $args Optional. Request arguments. Default empty array. See WP_Http::request() for information on accepted arguments.
    Requis: Non
    Défaut: array()
Voir:
Retourne:
  • (array|WP_Error) The response or WP_Error on failure.
Défini(e) dans:
Codex:

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

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.


Source

function wp_safe_remote_head( $url, $args = array() ) {
	$args['reject_unsafe_urls'] = true;
	$http                       = _wp_http_get_object();
	return $http->head( $url, $args );
}