apply_filters( ‘wp_http_cookie_value’, string $value, string $name )

In this article

Filters the header-encoded cookie value.

Parameters

$valuestring
The cookie value.
$namestring
The cookie name.

Source

return $this->name . '=' . apply_filters( 'wp_http_cookie_value', $this->value, $this->name );

Changelog

VersionDescription
3.4.0Introduced.

User Contributed Notes

You must log in before being able to contribute a note or feedback.