Definition:
function wp_remote_post($url, $args = array() {}
Parameters
- string $url: Site URL to retrieve.
- array $args: Optional. Override the defaults.
Return values
returns:The response or WP_Error on failure.
Source code
function wp_remote_post($url, $args = array()) {
$objFetchSite = _wp_http_get_object();
return $objFetchSite->post($url, $args);
}
4039

February 12, 2011 

