Save the ID of created post in a field
add_action(‘frm_after_create_entry’, ‘save_post_id’, 60, 2); function save_post_id( $entry_id, $form_id ) { if ( $form_id == 341 ) {// Replace 341 with the ID of your form $entry = FrmEntry::getOne( $entry_id ); if ( ! $entry->post_id ) { return; } FrmEntryMeta::add_entry_meta( $entry_id,…Continue reading