wpseek.com
Bazujące na WordPress narzędzie wyszukiwania dla deweloperów i twórców motywów.



wp_remote_post › WordPress Function

Od2.7.0
Przestarzałyn/a
wp_remote_post ( $url, $args = array() )
Parametry: (2)
  • (string) $url URL to retrieve.
    Wymagane: Tak
  • (array) $args Optional. Request arguments. Default empty array. See WP_Http::request() for information on accepted arguments.
    Wymagane: Nie
    Domyślny: array()
Zobacz:
Powrót:
  • (array|WP_Error) The response or WP_Error on failure.
Zdefiniowane na:
Codex:

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



Źródło

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