WordPress – Disable Autosave

In the following simple solution, I cover how to Disable WordPress Autosave function. A lot of people are having problems with the WordPress Autosave feature.

The WordPress Autosave feature was intended to automatically save your work in the background after a certain period of time to prevent you from losing your work. However many are finding that their most recent post or page edits are getting lost when they go to preview and publish the entry.

How to Disable WordPress AutoSave

  1. Using your favorite FTP client, FTP to your WordPress installation.
  2. Navigate to your wp-admin directory and copy the files post.php,page.phppage-new.php and post-new.php to your desktop.
  3. Open each file with a text editor and find the following line:
    wp_enqueue_script('autosave')
  4. And add // to the beginning of the line and then save each file (the new line should look as follows):
    // wp_enqueue_script('autosave')
  5. Using your FTP client, upload the files back to the server, replacing the original files with the edited files.

The Autosave feature in WordPress should now be disabled and you can proceed to edit your posts and pages without being interrupted with the autosaves and potentially losing your edits by an autosave overwrite.

SOURCE

LINK (Lancelhoff.com)

LANGUAGE
ENGLISH