Advertisement
Guest User

Untitled

a guest
Jun 18th, 2019
98
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.53 KB | None | 0 0
  1. // insert the post and set the category
  2. $post_id = wp_insert_post(array (
  3. 'post_type' => 'your_post_type',
  4. 'post_title' => $your_title,
  5. 'post_content' => $your_content,
  6. 'post_status' => 'publish',
  7. 'comment_status' => 'closed', // if you prefer
  8. 'ping_status' => 'closed', // if you prefer
  9. ));
  10.  
  11. if ($post_id) {
  12. // insert post meta
  13. add_post_meta($post_id, '_your_custom_1', $custom1);
  14. add_post_meta($post_id, '_your_custom_2', $custom2);
  15. add_post_meta($post_id, '_your_custom_3', $custom3);
  16. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement