you can create in this way
// Create post object
$my_post = array(
‘post_title’ => ‘your post title’,
‘post_content’ => ‘Your Post content or shortcode.’,
‘post_status’ => ‘publish’,
‘post_author’ => 1,
‘post_category’ => array(8,39)
);
// Insert the post into the database
wp_insert_post( $my_post );