Last active
February 20, 2023 10:45
-
-
Save mino129/5797438d923e54c9337f1c8f841b0ab7 to your computer and use it in GitHub Desktop.
Disable WordPress block editor
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
| /* | |
| block editor for posts + widgets | |
| */ | |
| add_filter("use_block_editor_for_post", "__return_false", 10); | |
| add_filter("use_widgets_block_editor", "__return_false" ); | |
| remove_action( 'wp_enqueue_scripts', 'wp_enqueue_global_styles' ); | |
| remove_action( 'wp_body_open', 'wp_global_styles_render_svg_filters' ); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment