Skip to content

Instantly share code, notes, and snippets.

@vishalkakadiya
Last active September 24, 2021 05:52
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 vishalkakadiya/7b3203c1e1cef0a6a543e9bdee6d0682 to your computer and use it in GitHub Desktop.
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.
/**
* 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