Aug
1st
Sat
1st
Disable WordPress autosaving function
To disable WordPress autosaving function, simply open your functions.php file and paste the following function:
function disableAutoSave(){
wp_deregister_script('autosave');
}
add_action( 'wp_print_scripts', 'disableAutoSave' );
That’s all. Once you saved the file, WordPress will never autosave a post. To enable autosaving again, simply delete this code.