新しい投稿を挿入するときに、投稿 ID を選択するにはどうすればよいですか。例:
$post = array(
'ID' => 3333,
'comment_status' => 'open',
'post_content' => 'hi world!',
'post_name' => 'title_1',
'post_status' => 'publish',
'post_title' => 'sdfsfd fdsfds ds',
'post_type' => 'post',
);
$post_id = wp_insert_post($post);
ID = 3333 の新しい投稿を挿入したい