Snippet 23523 X

You might also like

Download as pdf or txt
Download as pdf or txt
You are on page 1of 1

// Stay logged in for longer periods

add_filter( ‘auth_cookie_expiration’, ‘keep_me_logged_in’ );


function keep_me_logged_in( $expirein ) {
return 31556926; // 1 year in seconds
}

You might also like