wp_remote_retrieve_body() WP 1.0
Retrieve only the body from the raw response.
No Hooks.
Return
String. The body of the response. Empty string if no body or incorrect parameter given.
Usage
wp_remote_retrieve_body( $response );
- $response(array/WP_Error) (required)
- HTTP response.
Changelog
Since 2.7.0 | Introduced. |
Code of wp_remote_retrieve_body() wp remote retrieve body WP 5.6
function wp_remote_retrieve_body( $response ) {
if ( is_wp_error( $response ) || ! isset( $response['body'] ) ) {
return '';
}
return $response['body'];
}