Skip to content

Instantly share code, notes, and snippets.

@machouinard
Created February 27, 2021 21:44
Show Gist options
  • Save machouinard/1925e996f93e85a99fadaa9043339ba6 to your computer and use it in GitHub Desktop.
Save machouinard/1925e996f93e85a99fadaa9043339ba6 to your computer and use it in GitHub Desktop.
Disable that damn Welcome to the block editor message.
import { registerPlugin } from '@wordpress/plugins';
import { select, dispatch } from '@wordpress/data';
registerPlugin( 'disable-welcome-guide', {
render: function () {
return select( 'core/edit-post' ).isFeatureActive( 'welcomeGuide' ) &&
dispatch( 'core/edit-post' ).toggleFeature( 'welcomeGuide' );
},
} );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment