WordPress Version: 6.1
/**
* Retrieve only the response message from the raw response.
*
* Will return an empty string if incorrect parameter value is given.
*
* @since 2.7.0
*
* @param array|WP_Error $response HTTP response.
* @return string The response message. Empty string if incorrect parameter given.
*/
function wp_remote_retrieve_response_message($response)
{
if (is_wp_error($response) || !isset($response['response']) || !is_array($response['response'])) {
return '';
}
return $response['response']['message'];
}