apply_filters( 'use_block_editor_for_post_type', bool $use_block_editor, string $post_type )

Filters whether a post is able to be edited in the block editor.


Parameters

$use_block_editor bool
Whether the post type can be edited or not. Default true.
$post_type string
The post type being checked.

Top ↑

Source

File: wp-includes/post.php. View all references

return apply_filters( 'use_block_editor_for_post_type', true, $post_type );


Top ↑

Changelog

Changelog
Version Description
5.0.0 Introduced.

Top ↑

User Contributed Notes

You must log in before being able to contribute a note or feedback.