Welcome, visitor! Log in
 

Source View: auth_cookie_expiration

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.

  • Action hooks look like this: do_action( "hook_name" )
  • Filter hooks look like this: 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.

Source View

This hook occurs 2 times in this file.

Line Code
702  * set, the cookies will be kept for 14 days or two weeks.
703  *
704  * @since 2.5
705  *
706  * @param int $user_id User ID
707  * @param bool $remember Whether to remember the user
708  */
709 function wp_set_auth_cookie($user_id, $remember = false, $secure = '') {
710      if ( $remember ) {
711           $expiration = $expire = time() + apply_filters('auth_cookie_expiration', 1209600, $user_id, $remember);
712      } else {
713           $expiration = time() + apply_filters('auth_cookie_expiration', 172800, $user_id, $remember);
714           $expire = 0;
715      }
716
717      if ( '' === $secure )
718           $secure = is_ssl();
719
720      $secure = apply_filters('secure_auth_cookie', $secure, $user_id);
721      $secure_logged_in_cookie = apply_filters('secure_logged_in_cookie', false, $user_id, $secure);
722