wpseek.com
A WordPress-centric search engine for devs and theme authors



wp_remote_post › WordPress Function

Since2.7.0
Deprecatedn/a
wp_remote_post ( $url, $args = array() )
Parameters: (2)
  • (string) $url URL to retrieve.
    Required: Yes
  • (array) $args Optional. Request arguments. Default empty array. See WP_Http::request() for information on accepted arguments.
    Required: No
    Default: array()
See:
Returns:
  • (array|WP_Error) The response or WP_Error on failure.
Defined at:
Codex:

Performs an HTTP request using the POST method and returns its response.



Source

function wp_remote_post( $url, $args = array() ) {
	$http = _wp_http_get_object();
	return $http->post( $url, $args );
}