ADVERTISEMENTS
When we write or edit any post in Wordpress, it auto saves the post after a particular interval of time, Wordpress uses AJAX to save the post revisions and the default time to auto save is 60 seconds. If you think Wordpress takes too long or too short time to auto save the post then you can change the time using wp-config file. How ? I’ll tell you.
Note : For making the changes we have to edit the wp-config file. Please take backup of this file before making any changes to it.
Now, open wp-config.php file with any php editor or Notepad and add the following before the ending tag ?>
define('AUTOSAVE_INTERVAL', 200 );
Basically, wp-config is responsible for all the configuration changes in Wordpress. In the above code you can see 200, this means that the post will auto save in 200 seconds. You can decrease and increase the time according to your need.
If you like this post, you will love these :
- How To Change The Wordpress Default User Name
- Best Method To Change The Theme Of Your Wordpress Blog
- 20+ Codes and Hacks Every Wordpress User Should Know
- How to Create Author.php Page For Your Wordpress Blog
- How To Add Gravatar Beside Each Post In Wordpress
- How To Edit WordPress Themes/Templates in Dreamweaver
- Change the default theme for newly install XP
Gaganpreet Singh on December 14, 2009 | Filed Under Wordpress



Welcome to
{ 3 comments… read them below or add one }
The normal time for auto save is very low and this increases your database. There is a WP plugin one can use to make the change if one is scared of touching their config file.
Good Tutorial! I will Try This
I always fear to touch wp config files. This is a good tip.