disable auto save gutenberg

add_filter( 'block_editor_settings', 'jp_block_editor_settings', 10, 2 ); function jp_block_editor_settings( $editor_settings, $post ) { $editor_settings['autosaveInterval'] = 2000; //number of second [default value is 10] return $editor_settings; }

Be the first to comment

You can use [html][/html], [css][/css], [php][/php] and more to embed the code. Urls are automatically hyperlinked. Line breaks and paragraphs are automatically generated.