Skip to content

Instantly share code, notes, and snippets.

@adanzilla
Created June 1, 2019 19:36
Show Gist options
  • Save adanzilla/6e0b04eff7cd6ba90808afd7c78fe6c7 to your computer and use it in GitHub Desktop.
Save adanzilla/6e0b04eff7cd6ba90808afd7c78fe6c7 to your computer and use it in GitHub Desktop.
Disables Gutenberg on Wordpress
// disable for posts
add_filter('use_block_editor_for_post', '__return_false', 10);
// disable for post types
add_filter('use_block_editor_for_page', '__return_false', 10);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment