Skip to content

Instantly share code, notes, and snippets.

@BoweFrankema
Created February 18, 2015 09:09
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save BoweFrankema/4c1166c6a7d96353588e to your computer and use it in GitHub Desktop.
Save BoweFrankema/4c1166c6a7d96353588e to your computer and use it in GitHub Desktop.
Keep me logged in for a longer time.
<?php
function bp_keep_me_logged_in( $expirein ) {
return 2629743; // 1 month in seconds
}
add_filter( 'auth_cookie_expiration', 'bp_keep_me_logged_in' );
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment