Skip to content

Instantly share code, notes, and snippets.

@DarkLotus
Last active December 22, 2021 09:34
Show Gist options
  • Save DarkLotus/78e459954703c212b987eeec9f763bd3 to your computer and use it in GitHub Desktop.
Save DarkLotus/78e459954703c212b987eeec9f763bd3 to your computer and use it in GitHub Desktop.
// keep users logged in for longer in wordpress
function gw_users_logged_in_longer( $expirein ) {
// 1 month in seconds * 6 for 6 months
return 2628000 * 6;
}
add_filter( 'auth_cookie_expiration', 'gw_users_logged_in_longer' )
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment