wp_remote_retrieve_cookie_value( array|WP_Error $response, string $name ): string

In this article

Retrieve a single cookie’s value by name from the raw response.

Parameters

$responsearray|WP_Errorrequired
HTTP response.
$namestringrequired
The name of the cookie to retrieve.

Return

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

Source

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;
}

Changelog

VersionDescription
4.4.0Introduced.

User Contributed Notes

You must log in before being able to contribute a note or feedback.