using $wpdb to insert a form into a post
In the success part of your code, you can build an array representing a post, and use wp_insert_post as such : Example $mypost = array( ‘post_title’ => ‘My Title’, ‘post_type’ => ‘page’ //… add other fields according to your form ); $mypost_id = wp_insert_post( $mypost ); //Returns new post id on success Any field you … Read more