wp_remote_post() WordPress Function
The wp_remote_post() function is used to send data to a remote server. This function is similar to the wp_remote_get() function, but it allows you to send data to the server as well. This function is useful for sending data to a remote server that is not part of the WordPress installation. For example, you might use this function to send data to a third-party service.
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
(string)(Required)URL to retrieve.
- $args
(array)(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 ); }
Expand full source codeCollapse full source codeView on TracView on GitHub
Changelog
Version | Description |
---|---|
2.7.0 | Introduced. |