_wp_http_get_object

Advertisement

Private Access Private Access

This function’s access is marked private. This means it is not intended for use by plugin or theme developers, only in other core functions. It is listed here for completeness.

Summery Summery

Returns the initialized WP_Http Object

Syntax Syntax

_wp_http_get_object()

Return Return

(WP_Http) HTTP Transport object.

Source Source

File: wp-includes/http.php

	if ( is_null( $http ) ) {
		$http = new WP_Http();
	}
	return $http;
}

/**

Advertisement

Changelog Changelog

Changelog
Version Description
2.7.0 Introduced.

Advertisement

Leave a Reply