I want to redirect the url to the previous page

Add below code in functions.php and check it works or not.

add_action('admin_init', 'app_output_buffer');
function app_output_buffer() {
        ob_start();
}

let me know if it is working or not.

Leave a Comment