wp_safe_remote_post( string $url, array $args = array() )

Retrieve the raw response from a safe HTTP request using the POST method.


Description

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.

See also


Parameters

$url

(string) (Required) Site URL to retrieve.

$args

(array) (Optional) Request arguments.

Default value: array()


Return

(WP_Error|array) The response or WP_Error on failure.


Source

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 );
}


Changelog

Changelog
Version Description
WP-3.6.0 Introduced.