formcierge_note_added
Action
Since v1.0.0
Fires after a note has been added to an entry. Use to send a notification or sync the note to an external project management tool.
Parameters
$entry_id
int
The entry the note was added to.
$note_id
int
The ID of the newly created note record.
includes/Controllers/EntryController.php
Basic Usage
add_action( 'formcierge_note_added', function ( $entry_id, $note_id ) {
my_pm_add_comment( $entry_id, $note_id );
}, 10, 2 );