wp_remote_post( string $url, array $args = array() )
Performs an HTTP request using the POST method and returns its response.
Description
See also
wp_remote_request(): For more information on the response array format.
WP_Http::request(): For default arguments information.
Parameters
- $url
-
(Required) URL to retrieve.
- $args
-
(Optional) Request arguments.
Default value: array()
Return
Source
File: wp-includes/http.php
function wp_remote_post($url, $args = array()) {
$http = _wp_http_get_object();
return $http->post( $url, $args );
}
Changelog
Version | Description |
---|---|
2.7.0 | Introduced. |