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.

Top ↑

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 );


Top ↑

Changelog

Changelog
Version Description
3.4.0 Introduced.

Top ↑

User Contributed Notes

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