Created
December 21, 2023 10:34
-
-
Save arfinmilondev/ec55a3e16fbbbf53bad6d7dfe03d988e to your computer and use it in GitHub Desktop.
Remove support for block widget editor in wordpress theme
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
| <?php | |
| /* | |
| * Remove support for block editor. | |
| */ | |
| function milon_theme_support() | |
| { | |
| remove_theme_support('widgets-block-editor'); | |
| } | |
| add_action('after_setup_theme', 'milon_theme_support'); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment