On this page
apply_filters( 'wp_http_cookie_value', string $value, string $name )
Filters the header-encoded cookie value.
Parameters
$valuestring-
The cookie value.
$namestring-
The cookie name.
Source
File: wp-includes/class-wp-http-cookie.php. View all references
return $this->name . '=' . apply_filters( 'wp_http_cookie_value', $this->value, $this->name );
Related
Used By
| Used By | Description |
|---|---|
| WP_Http_Cookie::getHeaderValue() wp-includes/class-wp-http-cookie.php | Convert cookie name and value back to header string. |
Changelog
| Version | Description |
|---|---|
| 3.4.0 | Introduced. |
© 2003–2022 WordPress Foundation
Licensed under the GNU GPLv2+ License.
https://developer.wordpress.org/reference/hooks/wp_http_cookie_value