// wp_enqueue_script('autosave');
<?php
/*
Plugin Name: Disable Autosave
Plugin URI: http://www.weston-fl.com
Description: Disable the Autosave function.
*/
function wds_disable_autosave() {
wp_deregister_script('autosave');
}
add_action( 'wp_print_scripts', 'wds_disable_autosave' );
?>
/*
Plugin Name: Disable Autosave
Plugin URI: http://www.weston-fl.com
Description: Disable the Autosave function.
*/
function wds_disable_autosave() {
wp_deregister_script('autosave');
}
add_action( 'wp_print_scripts', 'wds_disable_autosave' );
?>
// Turn off Revisions
define(‘WP_POST_REVISIONS’, false);
define(‘WP_POST_REVISIONS’, false);
// Changed from 60 secs to 5 mins
if ( !defined( 'AUTOSAVE_INTERVAL' ) )
define( 'AUTOSAVE_INTERVAL', 300 );
if ( !defined( 'AUTOSAVE_INTERVAL' ) )
define( 'AUTOSAVE_INTERVAL', 300 );