1.自動保存とリビジョンの停止
下記方法の場合、テーマの変更、WordPressのバージョンアップで無効になる。
wp-config.phpを開いて、require_once(ABSPATH . ‘wp-settings.php’);の前に下記を挿入。
// リビジョン管理の停止
define (‘WP_POST_REVISIONS’, false);
テーマの中のfunctions.phpを開いて下記を挿入。
//自動保存の停止
function disable_autosave() {
wp_deregister_script(‘autosave’);
}
add_action( ‘wp_print_scripts’, ‘disable_autosave’ );
最近のコメント