Created
February 27, 2021 21:44
-
-
Save machouinard/1925e996f93e85a99fadaa9043339ba6 to your computer and use it in GitHub Desktop.
Disable that damn Welcome to the block editor message.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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