How to Disable auto-saving

Adding this PHP code to your functions.php of your wordpress theme will stop wordpress from auto saving your posts.
( click code to copy )wordpress snippet : PHP
<>
function disableAutoSave(){ wp_deregister_script('autosave'); } add_action( 'wp_print_scripts', 'disableAutoSave' );
( WordPress codex functions, hooks, in this snippet. )
register, add_action, wp_deregister_script, wp,