Disable Autosave In WordPress

In functions.php ADD this!

function NO_auto_save(){
    wp_deregister_script('autosave');
} add_action( 'wp_print_scripts', 'NO_auto_save' );
Scroll to Top