Skip to content

Instantly share code, notes, and snippets.

@thierrypigot
Created April 21, 2015 13:14
Show Gist options
  • Save thierrypigot/d2b82be8a5968d1f0ea0 to your computer and use it in GitHub Desktop.
Save thierrypigot/d2b82be8a5968d1f0ea0 to your computer and use it in GitHub Desktop.
Changer le timeout de connexion WordPress.
<?php
/**
* Filter the duration of the authentication cookie expiration period.
*
* @since 2.8.0
*
* @param int $length Duration of the expiration period in seconds.
* @param int $user_id User ID.
* @param bool $remember Whether to remember the user login. Default false.
*/
function tp_cookie_expiration( $expiration, $user_id, $remember )
{
return $remember ? $expiration : 600; // 10 minutes
}
add_filter( 'auth_cookie_expiration', 'tp_cookie_expiration', 99, 3 );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment