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



post_password_expires › WordPress Filter Hooks

Since3.7.0
Deprecatedn/a
apply_filters( 'post_password_expires', time()
Parameters:
  • (int) $expires The expiry time, as passed to setcookie().
    Required: Yes
Defined at:
Codex:

Filters the life span of the post password cookie.

By default, the cookie expires 10 days from creation. To turn this into a session cookie, return 0.





Source

$expire  = apply_filters( 'post_password_expires', time() + 10 * DAY_IN_SECONDS );