function custom_post_link( $permalink, $post ) {
if ( 'post' === $post->post_type ) {
$permalink = str_replace( '/blog/', '/', $permalink );
$permalink = '/blog' . $permalink;
}
return $permalink;
}
add_filter( 'post_link', 'custom_post_link', 10, 2 );