Skip to content

Instantly share code, notes, and snippets.

@Edwardtonnn
Created December 18, 2018 16:57
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Edwardtonnn/ff2c85c26589355ec6f6b6d29a02850e to your computer and use it in GitHub Desktop.
Save Edwardtonnn/ff2c85c26589355ec6f6b6d29a02850e to your computer and use it in GitHub Desktop.
Removes Guttenberg Block Editor
<?php
// As expected, Gutenberg is changing constantly. As of now,
// you can use either of the following filter hooks to disable Gutenberg completely on your entire site:
// disable for posts
add_filter('use_block_editor_for_post', '__return_false', 10);
// OR
// 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