Hello,
Thanks for the feedback!
The acfe/form/submit_post/form=my_form
hook (see documentation) is executed on the “Post Action” when the form named “my_form” is submitted. It provides information about the post that has been created/updated with the first parameter $post_id
and the second parameter $args
.
The acfe/form/submit_form/form=my_form
hook (see documentation) is executed after all Actions are submitted (if any) when the form named “my_form” is submitted. It doesn’t provide any specific information other than the $form
settings, since it is not tied to any action. You can use this hook on any form with or without any action, it will be always executed.
Hope it helps!
Have a nice day!
Regards.