Autosave every 2 minutes
The editor saves a backup copy of your work every 2 minutes instead of every minute. Fewer requests to a busy server.
<?php
add_filter(
'block_editor_settings_all',
static function ( $settings ) {
$settings['autosaveInterval'] = 120; // Seconds.
return $settings;
}
);
In these packs
- Posts and the editor: Make the block editor calmer and give pages excerpts, tags and categories.