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



wp_remote_post › WordPress Function

Seit2.7.0
Veraltetn/v
wp_remote_post ( $url, $args = array() )
Parameter: (2)
  • (string) $url URL to retrieve.
    Erforderlich: Ja
  • (array) $args Optional. Request arguments. Default empty array. See WP_Http::request() for information on accepted arguments.
    Erforderlich: Nein
    Standard: array()
Siehe:
Gibt zurück:
  • (array|WP_Error) The response or WP_Error on failure.
Definiert in:
Codex:

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



Quellcode

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