Disabling Auto Save

August 1, 2009 No Comments

I find the WordPress autosaving function a little annoying. Usually I write my postings or pages on OpenOffice Writer then cut and paste into the WordPress text box. OpenOffice has a nice spell check… that I seem to need time to time. On occasion I do write directly into the text box or while I’m formatting the posting I do get some auto saved versions. I found a nifty hack to stop the auto save feature. Open the functions.php file and paste the following into it.

function disableAutoSave(){
wp_deregister_script(‘autosave’);
}
add_action( ‘wp_print_scripts’, ‘disableAutoSave’ );

Pretty easy. WordPress won’t autosave after that.

WordPress, general

Leave a Reply

You must be logged in to post a comment.

Car Computing and My 300

I love my 300. I always try to drive it over my Montana SV6 (not a very hard decision)....

Print CSS

I really don’t like the “Printer Friendly” icons. Don’t you think when you hit print it should just print?...

Hiding Ads on Your Site

I wanted to hide my ads. Well acutually just from myself. I read somewhere once about decreasing some risk...

Disabling Auto Save

I find the WordPress autosaving function a little annoying. Usually I write my postings or pages on OpenOffice Writer...