Forums
(@devwax)
3 years, 3 months ago
This is a WordPress feature that you can turn off with this hook:https://jetpack.com/blog/wordpress-autosave/
add_action( 'admin_init', 'disable_autosave' ); function disable_autosave() { wp_deregister_script( 'autosave' ); }