wpseek.com
A WordPress-centric search engine for devs and theme authors



wp_http_cookie_value › WordPress Filter Hooks

Since3.4.0
Deprecatedn/a
apply_filters( 'wp_http_cookie_value', $this->value, $this->name )
Parameters: (2)
  • (string) $value The cookie value.
    Required: Yes
  • (string) $name The cookie name.
    Required: Yes
Defined at:
Codex:

Filters the header-encoded cookie value.





Source

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