Menu Adam R Brown

WP hooks navigation: Home/browseActions indexFilters index

Source View: post_password_expires

To save our bandwidth, we show only a snippet of code around each occurence of the hook. View complete file in SVN (without highlighting).

Understanding Source Code

The best way to understand what a hook does is to look at where it occurs in the source code.

Remember, this hook may occur in more than one file. Moreover, the hook's context may change from version to version.

Source View

Line Code
457       * Filter the life span of the post password cookie.
458       *
459       * By default, the cookie expires 10 days from creation. To turn this
460       * into a session cookie, return 0.
461       *
462       * @since 3.7.0
463       *
464       * @param int $expires The expiry time, as passed to setcookie().
465       */
466      $expire = apply_filters( 'post_password_expires', time() + 10 * DAY_IN_SECONDS );
467      setcookie( 'wp-postpass_' . COOKIEHASH, $hasher->HashPassword( wp_unslash( $_POST['post_password'] ) ), $expire, COOKIEPATH );
468
469      wp_safe_redirect( wp_get_referer() );
470      exit();
471
472 break;
473
474 case 'logout' :
475      check_admin_referer('log-out');