WordPress by utilizing Ajax has a function auto-save revisions, once you edit the blog put up or web page, it routinely saves a duplicate of the post with latest modifications every 60 seconds by default. It’s possible you’ll need to enhance this setting for longer delays in between auto-saves, or lower the setting to ensure you by no means lose modifications.
I’ve been studying quite a bit about how the autosave is such a ache when writing and modifying, It autosaves each three seconds and jumps as much as the highest of the web page I’ve to scroll again right down to search for the place I left off, it is a very annoying waste of time. Even I’ve tried the plugin WP-CMS Post Control and Disable autosave Plugin – doesn’t work.
Themeforest Top 10 WordPress Theme
Autosaves are activated for all of the WordPress blog posts and pages. I like to recommend to not disable autosave function as a result of this can be very helpful in case if you end up in between modifying a post and write so many essential lines and at last uncover that both your browser has crashed whereas typing or you might have misplaced internet connection after pressing ‘Publish’ button. and now you might have misplaced all of the modifications, an enormous lack of time and efforts! If in case you have Autosave enabled in such scenario, then subsequent time you come to edit the identical post, you’ll get the message on the prime that
There may be an autosave of this put up that’s newer than the model under. View the autosave.
which might have the hyperlink to autosaved revision of the put up and an choice to revive the unique post from the autosave copy.
The best way to Resolve WordPress connection lost Issue
Go to your wp-config.php
Observe: Do take backup of the file “wp-config.php”.
Discover the next remark line.
/* That's all, stop editing! Happy blogging. */
Simply earlier than the above remark, put the under code
define('AUTOSAVE_INTERVAL', 250 ); // seconds (default is 60) define('WP_POST_REVISIONS', false ); // disable post revisions define('WP_POST_REVISIONS', 3); // alter number of post revisions kept.
Keep in mind that the fixed ‘AUTOSAVE_INTERVAL’ represents the delay between the 2 autosaves in seconds. Change the worth (250 seconds above) as per your requirement.
Post your feedback in case you might have some interesting findings or points on WordPress autosave function.