WP hooks navigation: Home/browse • Actions index • Filters index
To save our bandwidth, we show only a snippet of code around each occurence of the hook. View complete file in SVN (without highlighting).
The best way to understand what a hook does is to look at where it occurs in the source code.
do_action( "hook_name" )apply_filters( "hook_name", "what_to_filter" ).Remember, this hook may occur in more than one file. Moreover, the hook's context may change from version to version.
| Line | Code |
|---|---|
| 475 | * Filter the life span of the post password cookie. |
| 476 | * |
| 477 | * By default, the cookie expires 10 days from creation. To turn this |
| 478 | * into a session cookie, return 0. |
| 479 | * |
| 480 | * @since 3.7.0 |
| 481 | * |
| 482 | * @param int $expires The expiry time, as passed to setcookie(). |
| 483 | */ |
| 484 | $expire = apply_filters( 'post_password_expires', time() + 10 * DAY_IN_SECONDS ); |
| 485 | $secure = ( 'https' === parse_url( home_url(), PHP_URL_SCHEME ) ); |
| 486 | setcookie( 'wp-postpass_' . COOKIEHASH, $hasher->HashPassword( wp_unslash( $_POST['post_password'] ) ), $expire, COOKIEPATH, COOKIE_DOMAIN, $secure ); |
| 487 | |
| 488 | wp_safe_redirect( wp_get_referer() ); |
| 489 | exit(); |
| 490 | |
| 491 | case 'logout' : |
| 492 | check_admin_referer('log-out'); |
| 493 | |