How can I fix a slow redirect after form submit from frontend (no plugin)?

Hook your form processing code to an action that runs before the page is rendered and no redirect will be necessary.

function wpd_check_submission(){
    if( isset( $_POST['start'] ) ) {
        // do your post insertion here
    }
}
add_action( 'init', 'wpd_check_submission' );

Leave a Comment