WordPress as a web app – always auto-save post and meta data
Set custom autosave interval Just define it in your wp-config.php file // Allow revisions define( ‘WP_POST_REVISIONS’, true); // Set number of ms define( ‘AUTOSAVE_INTERVAL’, 300 ); Note that this means that you’ll get a lot of queries and post revisions. Therefore you should also add a max. number of revisions to not fill your posts … Read more