Skip to content

Instantly share code, notes, and snippets.

@kartick14
Created October 10, 2019 08:28
Show Gist options
  • Save kartick14/60cb27e809a0b64e6b2297cff0986636 to your computer and use it in GitHub Desktop.
Save kartick14/60cb27e809a0b64e6b2297cff0986636 to your computer and use it in GitHub Desktop.
Create a new post with custom post id and custom post name
$post = array(
'import_id' => 9999,
'comment_status' => 'open',
'post_content' => 'hi world!',
'post_name' => 'title_1',
'post_status' => 'publish',
'post_title' => 'your title',
'post_type' => 'post',
);
echo $post_id = wp_insert_post($post);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment