In this guide, we will discover: How to Get out of Fullscreen in WordPress – Easy Beginners Guide 2023
So, let’s begin!
Need to get out of fullscreen mode in WordPress but don’t know how? Check out this guide, as it explains multiple ways to achieve that.
By Oluwaseun Bamisile | Updated April 4, 2023 | 8 minutes read
This guide demonstrates three ways to exit full-screen mode in WordPress. To be precise, you will learn how to carry out this task through the WordPress block editor.
This guide will also teach you how to disable full-screen mode in WordPress with the aid of a plugin. That’s not all; I will illustrate how to execute this task by adding a certain code to your WordPress theme’s function.php file.
Lastly, you will find an FAQ section toward the concluding part of this guide. In that section, answers to some of the questions people mostly ask regarding this guide’s topic will be provided.
Exit Fullscreen in WordPress Through WordPress Block Editor

A major and easy way to leave full-screen mode in WordPress is through the WordPress block editor. The following procedures and images will demonstrate how to do that.
- Sign in to the WordPress backend as an administrator. Now, hover your mouse cursor on Posts among the menus on the left pane, then select Add New from the displayed options.

- In the WordPress block editor, click the Options button (three vertical dots) at the top right corner. Finally, select Fullscreen mode from the options that appear.

Get out of Fullscreen in WordPress Using a Plugin

Interestingly, there is a simple plugin that allows you to exit full-screen mode in WordPress. Basically, this free plugin disables full-screen mode in WordPress as soon as it is installed and activated.
Thus, the following procedures will demonstrate how to install and activate this plugin on your WordPress site.
- Log into the WordPress backend using an admin account. Afterward, hover your mouse cursor on Plugins and select Add New from the options that appear.

- Now, input “Disable Block Editor FullScreen mode” in the search field on the Add Plugins page.

- From the search result, click the Install Now button of the Disable Block Editor FullScreen mode plugin.

- After installing the plugin, click the blue Activate button to enable it in WordPress. Consequently, the full-screen mode in WordPress should be automatically disabled.

Disable Fullscreen in WordPress Using Code

Another method to exit full-screen mode in WordPress is by using a certain code. This method requires you to manually add the code to your WordPress theme’s functions.php file.
You should be careful with this method as messing with your theme’s functions.php file can damage your WordPress site.
- Login to the backend of your WordPress site. Then, hover your mouse pointer on Appearance among the menus on the left pane and select Theme File Editor.

- In the Edit Themes page, select Theme Functions (functions.php) among the Theme Files.

- Now scroll to the bottom of the Theme Functions (functions.php) file and input the code below.
if (is_admin()) { function jba_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', 'jba_disable_editor_fullscreen_by_default' ); }

- Finally, click the Update File at the bottom of the page to save the input. Hence, full-screen mode on WordPress should be disabled.

Frequently Asked Questions

To turn off full-screen mode in the WordPress block editor, follow the steps below.
a) Sign in to the WordPress backend as an administrator.
b) Now, hover your mouse cursor on Post among the menus on the left pane, then select Add New from the displayed options.
c) In the WordPress block editor, click the Options button (three vertical dots) at the top right corner.
d) Finally, select Fullscreen mode from the options that appear.
The keyboard shortcut to exit full screen in the WordPress block editor is Ctrl + Shift + Alt + F.
To enable full-screen mode while using the block editor in WordPress, click the Options button (three vertical dots) at the top right corner. Then, select Fullscreen mode from the options that appear.
WordPress was released on May 27, 2003. American developer Matt Mullenweg and English developer Mike Little developed this content management system.
The full-screen mode in WordPress removes unnecessary icons and menus on the screen to create a distraction-free space. Hence, writers can focus mainly on writing with little to no distractions.
My Final Thoughts

When using WordPress, it’s typical to find oneself editing a post or page in fullscreen mode. While this mode can help you focus on your content, it can also be frustrating when you want to switch quickly to a different task.
Fortunately, this guide provided three distinct methods to disable full-screen mode in WordPress. To be more specific, we discussed how to perform this task through the WordPress block editor.
This guide also taught us how to exit full-screen mode in WordPress by using a plugin. Additionally, we learned how to execute the task by adding a certain code to the theme’s functions.php file.
Hopefully, you found this guide helpful and easy to understand. If you did, kindly share your views with our community platform at Itechguides Community Forum.
However, if you have any questions regarding this guide, please don’t hesitate to post them at Itechguides Community Forum. Our forum staff and other community members will provide an answer to your questions as quickly as possible.
Finally, to find other helpful WordPress guides, visit our WordPress & Websites How-To page.