No welcome guide in the block editor
The “Welcome to the block editor” popup doesn’t appear for new users. It’s still under the editor’s Options menu.
<?php
add_action(
'enqueue_block_editor_assets',
static function () {
wp_add_inline_script(
'wp-edit-post',
"window.addEventListener( 'load', function () {
wp.data.dispatch( 'core/preferences' ).setDefaults( 'core/edit-post', { welcomeGuide: false } );
} );"
);
}
);
In these packs
- Posts and the editor: Make the block editor calmer and give pages excerpts, tags and categories.