• Hi,

    I used to have a function in my functions.php that disabled AutoSave prior to WP 3.0. Here’s the code:

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

    However, in WP 3.0 it doesn’t work!

    Any suggestions on how to fix this?

    Thanks!

Viewing 1 replies (of 1 total)
Viewing 1 replies (of 1 total)
  • The topic ‘Disable AutoSave in Wp 3.0’ is closed to new replies.