wp_remote_retrieve_cookie_value()
Retrieve the value of the specified cookie from the passed query response.
No Hooks.
Returns
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
#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() wp remote retrieve cookie value code WP 7.0
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;
}