wpseek.com
Eine auf WordPress spezialiserte Suchmaschine für Entwickler und Theme-Autoren



_wp_http_get_object › WordPress Function

Seit2.7.0
Veraltetn/v
_wp_http_get_object ( Keine Parameter )
Zugriff:
  • private
Gibt zurück:
  • (WP_Http) HTTP Transport object.
Definiert in:
Codex:

Returns the initialized WP_Http Object



Quellcode

function _wp_http_get_object() {
	static $http = null;

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