Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Select an option

  • Save ccurtin/d855abaf5450c5e84ee2 to your computer and use it in GitHub Desktop.

Select an option

Save ccurtin/d855abaf5450c5e84ee2 to your computer and use it in GitHub Desktop.
:WORDPRESS: keep logged in (pre-functions for dev only)
add_filter( 'auth_cookie_expiration', 'keep_me_logged_in_for_1_year' );
function keep_me_logged_in_for_1_year( $expirein ) {
return 31556926; // 1 year in seconds
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment