wpseek.com
Un motore di ricerca WordPress per sviluppatori e autori di temi



_wp_http_get_object › WordPress Function

Da2.7.0
Deprecaton/a
_wp_http_get_object ( Nessun parametro )
Accedi:
  • private
Ritorna:
  • (WP_Http) HTTP Transport object.
Definito a:
Codex:

Returns the initialized WP_Http Object



Sorgenti

function _wp_http_get_object() {
	static $http = null;

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