vfbp_after_save_entry

Description

Action that fires at the end of creating a new entry.

Passes the Entry ID and the Form ID.

Parameters

$entry_id
(int) (required) The entry ID
Default: the form ID

$form_id
(int) (optional) The form ID
Default: the form ID

Examples

add_action( 'vfbp_after_save_entry', 'filter_vfbp_after_save_entry', 10, 2 );
 
function filter_vfbp_after_save_entry( $entry_id, $form_id ) {
    // execute some custom code here
}