 Menu
Menu af/form/entry_created
Triggered after an entry has been created
<?php
function entry_created( $entry_id, $form ) {
    // Do something with entry
}
add_action( 'af/form/entry_created/key=FORM_KEY', 'entry_created', 10, 2 );Modifiers
- af/form/entry_createdApplies to all forms.
- af/form/entry_created/key=FORM_KEYApplies to forms with specific key.
- af/form/entry_created/id=FORM_IDApplies to forms with specific post ID.