Capture timestamp
add_action( ‘frm_after_create_entry’, ‘my_custom_function’, 30, 2 ); function my_custom_function( $entry_id, $form_id ){ $entry = FrmEntry::getOne( $entry_id ); // Get the created_at date in a UNIX timestamp $timestamp = strtotime( $entry->created_at ); }Continue reading