wp_remote_retrieve_cookie_value() WordPress Function
The wp_remote_retrieve_cookie_value() function is used to get the value of a specific cookie from the response of an HTTP request. This is useful if you need to get a cookie value that is set by a third-party server.
wp_remote_retrieve_cookie_value( array|WP_Error $response, string $name ) #
Retrieve a single cookie’s value by name from the raw response.
Parameters
- $response
(array|WP_Error)(Required)HTTP response.
- $name
(string)(Required)The name of the cookie to retrieve.
Return
(string) The value of the cookie. Empty string if the cookie isn't present in the response.
Source
File: wp-includes/http.php
function wp_remote_retrieve_cookie_value( $response, $name ) { $cookie = wp_remote_retrieve_cookie( $response, $name ); if ( ! is_a( $cookie, 'WP_Http_Cookie' ) ) { return ''; } return $cookie->value; }
Expand full source codeCollapse full source codeView on TracView on GitHub
Changelog
Version | Description |
---|---|
4.4.0 | Introduced. |