Disable Block Editor Welcome Guide Popup
Suppresses the introductory welcome modal that appears the first time a user opens the Block Editor.
PHPby SnipCraft
php
<?php
add_action( 'enqueue_block_editor_assets', 'scseed_disable_welcome_guide' );
if ( ! function_exists( 'scseed_disable_welcome_guide' ) ) {
function scseed_disable_welcome_guide() {
$script = "wp.domReady( function() {
var editPost = wp.data.select( 'core/edit-post' );
if ( editPost && editPost.isFeatureActive( 'welcomeGuide' ) ) {
wp.data.dispatch( 'core/edit-post' ).toggleFeature( 'welcomeGuide' );
}
} );";
wp_add_inline_script( 'wp-edit-post', $script );
}
}#admin#editor#gutenberg#onboarding#ux