Skip to content

Instantly share code, notes, and snippets.

@ilacorda
Last active September 5, 2018 14:52
Show Gist options
  • Save ilacorda/32cdf0b89d223c44c9ff1c3c9c579df6 to your computer and use it in GitHub Desktop.
Save ilacorda/32cdf0b89d223c44c9ff1c3c9c579df6 to your computer and use it in GitHub Desktop.
Turn off Wordpress Gutenberg editor for your custom post types
add_filter( ‘gutenberg_can_edit_post_type’, ‘can_edit_post_types’ );
function can_edit_post_types( $can_edit, $post_type ) {
If ( in_array( $post_type, array( ‘a_post_type’, ‘another_post_type’ ) ) {
return false;
}
return $can_edit;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment