Skip to content

Instantly share code, notes, and snippets.

@kstover
Created July 20, 2015 19:33
Show Gist options
  • Save kstover/84500804fa23d74035cb to your computer and use it in GitHub Desktop.
Save kstover/84500804fa23d74035cb to your computer and use it in GitHub Desktop.
/**
* Force the cookie expiration variant time to 23 minutes
*
* @access public
* @since 2.9.18
* @param int $exp Default expiration (1 hour)
* @return int
*/
public function set_expiration_variant_time( $exp ) {
return 60 * 23;
}
/**
* Force the cookie expiration time to 24 minutes
*
* @access public
* @since 2.9.18
* @param int $exp Default expiration (1 hour)
* @return int
*/
public function set_expiration_time( $exp ) {
return 60 * 24;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment