apply_filters( 'wp_http_cookie_value', string $value , string $name )
Filters the header-encoded cookie value.
Parameters
-
$value
string -
The cookie value.
-
$name
string -
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 );
Changelog
Version | Description |
---|---|
3.4.0 | Introduced. |