apply_filters( 'use_block_editor_for_post', bool $use_block_editor , WP_Post $post )
Filters whether a post is able to be edited in the block editor.
Parameters
-
$use_block_editor
bool -
Whether the post can be edited or not.
-
$post
WP_Post -
The post being checked.
Source
File: wp-includes/post.php
.
View all references
return apply_filters( 'use_block_editor_for_post', $use_block_editor, $post );
Changelog
Version | Description |
---|---|
5.0.0 | Introduced. |
User Contributed Notes
You must log in before being able to contribute a note or feedback.
To disable the block editor for all post types, use the following filter:
Add the above line to your active theme or child theme’s functions.php file.
Disable Gutenberg for certain post type