Last active
September 24, 2021 05:52
-
-
Save vishalkakadiya/7b3203c1e1cef0a6a543e9bdee6d0682 to your computer and use it in GitHub Desktop.
WordPress - Removing Gutenberg block editor from widgets area and make it as before.
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
/** | |
* Disabling block editor for widgets. | |
*/ | |
function example_theme_support() { | |
remove_theme_support( 'widgets-block-editor' ); | |
} | |
add_action( 'after_setup_theme', 'example_theme_support' ); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment