wp_remote_retrieve_cookie_value()WP 4.4.0

Retrieve the value of the specified cookie from the passed query response.

No Hooks.

Return

String. The value of the cookie, or empty string if the cookie is not present in the response.

Usage

wp_remote_retrieve_cookie_value( $response, $name );
$response(array) (required)
HTTP response. The result of any of wp_remote_*() functions.
$name(string) (required)
The name of the cookie to retrieve.

Examples

0

#1 Basic usage

$url = 'https://example.com/cookies/set?mycookie=mycookievalue';

$response = wp_remote_get( $url );

$mycookie = wp_remote_retrieve_cookie_value( $response, 'mycookie' ); //> mycookievalue

Changelog

Since 4.4.0 Introduced.

wp_remote_retrieve_cookie_value() code WP 6.6.1

function wp_remote_retrieve_cookie_value( $response, $name ) {
	$cookie = wp_remote_retrieve_cookie( $response, $name );

	if ( ! ( $cookie instanceof WP_Http_Cookie ) ) {
		return '';
	}

	return $cookie->value;
}