Set Lockout Duration in Defender

Set Lockout Duration in Defender on child sites.

Snippet Type

Execute on Child Sites

Snippet

add_filter('wd_2fa_time_limit', 'custom_defender_filter');
function custom_defender_filter( $time_limit ){
	return 120;
}

This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.