Advertisement
brooklyndesignstudio

Disable Wordpress Autosave

Apr 22nd, 2021
1,158
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.12 KB | None | 0 0
  1. add_action( 'admin_init', 'disable_autosave' );
  2. function disable_autosave() {
  3. wp_deregister_script( 'autosave' );
  4. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement