Now i create a wordpress front-end post, after wp_insert_post(); i want to redirect into the full page of that post data. Here i use the this way, so it was redirect the blog index page, but i need this page redirect this post full page.
$post_insert = array(
'post_title' => $title,
'post_content' => $content,
'tags_input' => $post_tags,
'post_status' => 'publish',
);
$post_id = wp_insert_post( $post_insert );
wp_redirect( site_url()."?post=$post_id" );
exit();