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



wp_remote_post › WordPress Function

Da2.7.0
Deprecaton/a
wp_remote_post ( $url, $args = array() )
Parametri: (2)
  • (string) $url URL to retrieve.
    Richiesto:
  • (array) $args Optional. Request arguments. Default empty array. See WP_Http::request() for information on accepted arguments.
    Richiesto: No
    Default: array()
Vedi:
Ritorna:
  • (array|WP_Error) The response or WP_Error on failure.
Definito a:
Codex:

Performs an HTTP request using the POST method and returns its response.



Sorgenti

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