Requests_Session::put() WordPress Method
The put() method of the Requests_Session class makes an HTTP PUT request to a specified Wordpress URL. The method takes two arguments: the Wordpress URL to request and an array of data to send with the request.
Requests_Session::put( $url, $headers = array(), $data = array(), $options = array() ) #
Send a PUT request
Source
File: wp-includes/Requests/Session.php
public function put($url, $headers = array(), $data = array(), $options = array()) { return $this->request($url, $headers, $data, Requests::PUT, $options); }
Expand full source codeCollapse full source codeView on TracView on GitHub