wpseek.com
Eine auf WordPress spezialiserte Suchmaschine für Entwickler und Theme-Autoren



post_password_expires › WordPress Filter Hooks

Seit3.7.0
Veraltetn/v
apply_filters( 'post_password_expires', time()
Parameter:
  • (int) $expires The expiry time, as passed to setcookie().
    Erforderlich: Ja
Definiert in:
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.





Quellcode

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