Created
September 3, 2021 11:29
-
-
Save dr5hn/bf319a24ee930e9c46eb2e02c6367035 to your computer and use it in GitHub Desktop.
Disable Gutenberg in Wordpress
This file contains 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
add_filter('use_block_editor_for_post_type', function($use_block_editor, $post_type){ | |
return in_array($post_type, []); | |
}, 10, 2); | |
add_action( 'wp_enqueue_scripts', function(){ | |
wp_dequeue_style( 'wp-block-library' ); | |
}, 100 ); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment