mirror of
https://gh.wpcy.net/https://github.com/mainwp/Code-Snippets-Functions.git
synced 2026-05-04 12:22:24 +08:00
4 lines
122 B
Text
4 lines
122 B
Text
add_filter('wd_2fa_time_limit', 'custom_defender_filter');
|
|
function custom_defender_filter( $time_limit ){
|
|
return 120;
|
|
}
|