Skip to content

Instantly share code, notes, and snippets.

@lukecav
Last active June 1, 2022 20:07
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save lukecav/77a58b76f21c1dae935595566e4e5708 to your computer and use it in GitHub Desktop.
Save lukecav/77a58b76f21c1dae935595566e4e5708 to your computer and use it in GitHub Desktop.
Disable autosave in WordPress
add_action( 'admin_init', 'disable_autosave' );
function disable_autosave() {
wp_deregister_script( 'autosave' );
}
define('AUTOSAVE_INTERVAL', 86400);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment