Uses
Uses | Description |
---|---|
wp-includes/http.php: _wp_http_get_object() | Returns the initialized WP_Http Object |
Retrieve the raw response from a safe HTTP request using the POST method.
This function is ideal when the HTTP request is being made to an arbitrary URL. The URL is validated to avoid redirection and request forgery attacks.
(string) (Required) URL to retrieve.
(array) (Optional) Request arguments.
Default value: array()
File: wp-includes/http.php
function wp_safe_remote_post( $url, $args = array() ) { $args['reject_unsafe_urls'] = true; $http = _wp_http_get_object(); return $http->post( $url, $args ); }
Version | Description |
---|---|
3.6.0 | Introduced. |
© 2003–2019 WordPress Foundation
Licensed under the GNU GPLv2+ License.
https://developer.wordpress.org/reference/functions/wp_safe_remote_post