Disable Gutenberg editor in WordPress 5.x
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
/** | |
* | |
* Disable Gutenberg Editor for all post types | |
* | |
*/ | |
// disable for posts | |
add_filter('use_block_editor_for_post', '__return_false', 10); | |
// disable for post types | |
add_filter('use_block_editor_for_post_type', '__return_false', 10); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment