wp_remote_post( string $url, array $args = array() )
Performs an HTTP request using the POST method and returns its response.
Contents
Description Description
See also See also
- wp_remote_request(): For more information on the response array format.
- WP_Http::request(): For default arguments information.
Parameters Parameters
- $url
-
(string) (Required) URL to retrieve.
- $args
-
(array) (Optional) Request arguments.
Default value: array()
Return Return
Source 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 code Collapse full source code View on Trac
Changelog Changelog
Version | Description |
---|---|
2.7.0 | Introduced. |
User Contributed Notes User Contributed Notes
You must log in before being able to contribute a note or feedback.
Exemple of Basic Authentication:
Post data should be sent in the body as an array. Example passing post data:
Expand full source codeCollapse full source code
In the example above,
$response['body']
will contain the actual page content returned by the server.See also wp_safe_remote_post(), especially if you are using a dynamic URL call.