wp_remote_retrieve_cookie_value

Advertisement

Summery Summery

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

Syntax Syntax

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

Parameters Parameters

$response

(array|WP_Error) (Required) HTTP response.

$name

(string) (Required) The name of the cookie to retrieve.

Return Return

(string) The value of the cookie. Empty string if the cookie isn't present in the response.

Source Source

File: wp-includes/http.php

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

	return $cookie->value;
}

/**

Advertisement

Changelog Changelog

Changelog
Version Description
4.4.0 Introduced.

Advertisement

Leave a Reply

This site uses Akismet to reduce spam. Learn how your comment data is processed.