support for remember me controls plugin
-
Hello,
I would like to ask if your plugin code will work along with this plugin without any conflict https://ww.wp.xz.cn/plugins/remember-me-controls/
add_filter( 'auth_cookie_expiration', 'my_custom_cookie_expiration', 10, 3 );
function my_custom_cookie_expiration( $expiration, $user_id, $remember ) {
// Extend session to 3 months if "Remember Me" is active
if ( $remember ) {
return 3 * MONTH_IN_SECONDS; // 3 months
}
// Otherwise, set session duration to 1 month
return MONTH_IN_SECONDS; // 1 month
}
Viewing 1 replies (of 1 total)
Viewing 1 replies (of 1 total)
The topic ‘support for remember me controls plugin’ is closed to new replies.