The block editor has a Fullscreen mode
which you can access via the tools options on the top-right:
Is there a PHP approach to enable the Fullscreen mode
by default? As in, force this mode for all users. Alternatively, a javascript solution.
The block editor has a Fullscreen mode
which you can access via the tools options on the top-right:
Is there a PHP approach to enable the Fullscreen mode
by default? As in, force this mode for all users. Alternatively, a javascript solution.
1 Answer
Reset to default 8Switching Gutenberg to fullscreen mode requires setting to TRUE fullscreenMode
from the core/edit-post
package. To enqueue appropriate script, you use enqueue_block_editor_assets
action hook.
function se337302_fullscreen_editor()
{
$js_code = "jQuery(document).ready(function(){" .
" var 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', $js_code );
}
add_action( 'enqueue_block_editor_assets', 'se337302_fullscreen_editor' );