wp_remote_retrieve_cookies( array $response )

Retrieve only the cookies from the raw response.


Parameters

$response

(array) (Required) HTTP response.


Return

(array) An array of WP_Http_Cookie objects from the response. Empty array if there are none, or the response is a WP_Error.


Source

File: wp-includes/http.php

function wp_remote_retrieve_cookies( $response ) {
	if ( is_wp_error( $response ) || empty( $response['cookies'] ) ) {
		return array();
	}

	return $response['cookies'];
}


Changelog

Changelog
Version Description
WP-4.4.0 Introduced.