WP_Http::get()publicWP 2.7.0

Uses the GET HTTP method.

Used for sending data that is expected to be in the body.

Method of the class: WP_Http{}

No Hooks.

Return

Array|WP_Error. Array containing 'headers', 'body', 'response', 'cookies', 'filename'. A WP_Error instance upon error. See WP_Http::response() for details.

Usage

$WP_Http = new WP_Http();
$WP_Http->get( $url, $args );
$url(string) (required)
The request URL.
$args(string|array)
Override the defaults.
Default: array()

Changelog

Since 2.7.0 Introduced.

WP_Http::get() code WP 6.5.2

public function get( $url, $args = array() ) {
	$defaults    = array( 'method' => 'GET' );
	$parsed_args = wp_parse_args( $args, $defaults );
	return $this->request( $url, $parsed_args );
}