wpseek.com
WordPress开发者和主题制作者的搜索引擎



wp_remote_head › WordPress Function

Since2.7.0
已弃用n/a
wp_remote_head ( $url, $args = array() )
参数: (2)
  • (string) $url URL to retrieve.
    Required: Yes
  • (array) $args Optional. Request arguments. Default empty array. See WP_Http::request() for information on accepted arguments.
    Required: No
    默认: array()
查看:
返回:
  • (array|WP_Error) The response or WP_Error on failure.
定义在:
文档:

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



源码

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