Last active
October 6, 2015 05:58
-
-
Save Coopeh/2947857 to your computer and use it in GitHub Desktop.
Disable Autosave
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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