mustafakucuk
12/7/2018 - 1:40 PM

WordPress - Disable Gutenberg without use plugin.

WordPress - Disable Gutenberg without use plugin.

if (version_compare($GLOBALS['wp_version'], '5.0-beta', '>')) {
  add_filter('use_block_editor_for_post_type', '__return_false', 100);
} else {
   add_filter('gutenberg_can_edit_post_type', '__return_false');   
}