The default post type after submission of my form is 'Article'. I want it to be a custom post type called 'Review'. I've added the following into functions.php:
add_action('gform_after_submission_1', 'set_post_type', 10, 2);
set_post_type('post_id','Review');
It's pretty straightforward. I'm trying to to set the post type to 'Review' after the form is submitted. No luck. Any suggestions? Thanks!