Publish posts instantly
-
Dear Aurovrata,
I’m not very experienced with hooks in WordPress. I also would like to have the new posts published immediately, without first being posted as drafts. If I understand it correctly, from the above messages, the following code needs to be added:
/**
* Custom code for instant publishing
*/add_action(‘cf7_2_post_form_mapped_to_my-cpt’,’modify_form_posts’,10,2); function modify_form_posts($post_id, $cf7_form_data){ //cf7_form_data is the submitted data from your form //post_id is the id of the post to which it has been saved. $args = array( 'ID' => $post_id, 'post_status' => 'publish' ); wp_update_post($args); }
I have put that exact piece of code on the bottom of my theme’s functions.php file, however the new posts still appear as drafts.
Any idea what goes wrong here?
Many thanks for helping out!
Best regards,
Max de Feber
Viewing 7 replies - 1 through 7 (of 7 total)
Viewing 7 replies - 1 through 7 (of 7 total)
- The topic ‘Publish posts instantly’ is closed to new replies.