Skip to content

Instantly share code, notes, and snippets.

@nathan-roberts
Created July 28, 2022 08:45
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save nathan-roberts/e19e5a6207ec507830adf8d768d89477 to your computer and use it in GitHub Desktop.
Save nathan-roberts/e19e5a6207ec507830adf8d768d89477 to your computer and use it in GitHub Desktop.
Disable Fullscreen Gutenberg
<?php
/**
* Disable Fullscreen Gutenberg.
*/
if (is_admin()) {
function ca_disable_editor_fullscreen_by_default()
{
$script = "jQuery( window ).load(function() { const isFullscreenMode = wp.data.select( 'core/edit-post' ).isFeatureActive( 'fullscreenMode' ); if ( isFullscreenMode ) { wp.data.dispatch( 'core/edit-post' ).toggleFeature( 'fullscreenMode' ); } });";
wp_add_inline_script('wp-blocks', $script);
}
add_action('enqueue_block_editor_assets', 'ca_disable_editor_fullscreen_by_default');
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment