vfbp_timestamp_max

Description

Filter for the timestamp check maximum, in seconds.

This is a security check that determines if the form was submitted too slow.

Parameters

$seconds
(int) (required) The number of seconds to return
Default: 43200

Examples

Changes the maximum number of seconds to 1 hour

add_filter( 'vfbp_timestamp_max', 'vfbp_filter_timestamp_max' );
 
function vfbp_filter_timestamp_max( $settings ){    
   return 3600;
}