Skip to content

Instantly share code, notes, and snippets.

@KevinBatdorf
Last active March 8, 2022 03:17
Show Gist options
  • Save KevinBatdorf/44b6cb834a082a12a6ed76719c5c84f1 to your computer and use it in GitHub Desktop.
Save KevinBatdorf/44b6cb834a082a12a6ed76719c5c84f1 to your computer and use it in GitHub Desktop.
Disable the Gutenberg Welcome Guide from showing
<?php
add_action('admin_footer', function () { ?>
<script>
window.addEventListener('load', () => {
window.setTimeout(() => {
if (wp.data && wp.data.select('core/edit-post').isFeatureActive('welcomeGuide')) {
wp.data.dispatch('core/edit-post').toggleFeature('welcomeGuide');
}
})
});
</script>
<?php
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment