Skip to content

Instantly share code, notes, and snippets.

@Coopeh
Last active October 6, 2015 05:58
Show Gist options
  • Save Coopeh/2947857 to your computer and use it in GitHub Desktop.
Save Coopeh/2947857 to your computer and use it in GitHub Desktop.
Disable Autosave
function disabler_kill_autosave(){
wp_deregister_script('autosave');
}
add_action( 'wp_print_scripts', 'disabler_kill_autosave' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment