Created
November 28, 2014 08:04
-
-
Save ccurtin/d855abaf5450c5e84ee2 to your computer and use it in GitHub Desktop.
:WORDPRESS: keep logged in (pre-functions for dev only)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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