Skip to content

Instantly share code, notes, and snippets.

@Pebblo
Created March 22, 2017 18:07
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 Pebblo/ee5b686c56fef27dbccb08602821e582 to your computer and use it in GitHub Desktop.
Save Pebblo/ee5b686c56fef27dbccb08602821e582 to your computer and use it in GitHub Desktop.
Example of how to change EE default session lifespan
#<?php //Please do not include the opening PHP tag if you already have one
function tw_ee_session_lifespan() {
return 120 * MINUTE_IN_SECONDS;
}
add_filter( 'FHEE__EE_Session__construct___lifespan', 'tw_ee_session_lifespan' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment