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

Retrieve the raw response from the HTTP request using the GET method.


Description

See also


Parameters

$url

(string) (Required) Site URL to retrieve.

$args

(array) (Optional) Request arguments.

Default value: array()


Return

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


Source

File: wp-includes/http.php

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


Changelog

Changelog
Version Description
WP-2.7.0 Introduced.