add_filter( 'frm_form_token_check_before_today', 'my_custom_function' ); function my_custom_function( $times ) { array_push( $times, 3 * DAY_IN_SECONDS ); // Three days ago. return $times; }