Frontend Form for Custom Post Type

I want to add frontend post to custom post types. Till now I have figured out how to do it but only to the regular post type(not custom post). I am using this code. (Couldn’t paste it here hence please find it at Pastebin)

Need to know what code can be added to make the code applicable to custom post type(such as “books” or “places”)

2 Answers
2

Have you tried changing Line 83? Change 'post_type' => 'post', to 'post_type' => 'YOURCUSTOMCPT',
See Codex article for wp_insert_post for reference – codex.wordpress.org/Function_Reference/wp_insert_post

Leave a Comment