Uses
| Uses | Description |
|---|---|
| wp-includes/http.php: _wp_http_get_object() | Returns the initialized WP_Http Object |
Performs an HTTP request using the POST method and returns its response.
(string) (Required) URL to retrieve.
(array) (Optional) Request arguments.
Default value: array()
File: wp-includes/http.php
function wp_remote_post( $url, $args = array() ) {
$http = _wp_http_get_object();
return $http->post( $url, $args );
} | Version | Description |
|---|---|
| 2.7.0 | Introduced. |
© 2003–2019 WordPress Foundation
Licensed under the GNU GPLv2+ License.
https://developer.wordpress.org/reference/functions/wp_remote_post