WP_HTTP_Response::get_data() public WP 4.4.0
Retrieves the response data.
{} It's a method of the class: WP_HTTP_Response{}
No Hooks.
Return
Mixed
. Response data.
Usage
$WP_HTTP_Response = new WP_HTTP_Response(); $WP_HTTP_Response->get_data();
Changelog
Since 4.4.0 | Introduced. |
Code of WP_HTTP_Response::get_data() WP HTTP Response::get data WP 5.7
public function get_data() {
return $this->data;
}