Skip to content

Instantly share code, notes, and snippets.

@paulgibbs
Created October 14, 2020 12:46
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 paulgibbs/ed0d565ae5d96c8657dc64a9f22b399c to your computer and use it in GitHub Desktop.
Save paulgibbs/ed0d565ae5d96c8657dc64a9f22b399c to your computer and use it in GitHub Desktop.
<?php
function pggh_post_type_filter( $use_block_editor, $post_type ) {
if ( 'page' === $post_type ) {
return false;
}
return $use_block_editor;
}
add_filter( 'use_block_editor_for_post_type', 'pggh_post_type_filter', 10, 2 );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment