WP hooks navigation: Home/browse • Actions index • Filters index
To save our bandwidth, we show only a snippet of code around each occurence of the hook. View complete file in SVN (without highlighting).
The best way to understand what a hook does is to look at where it occurs in the source code.
do_action( "hook_name" )apply_filters( "hook_name", "what_to_filter" ).Remember, this hook may occur in more than one file. Moreover, the hook's context may change from version to version.
| Line | Code |
|---|---|
| 8078 | |
| 8079 | /** |
| 8080 | * Filters whether a post is able to be edited in the block editor. |
| 8081 | * |
| 8082 | * @since 5.0.0 |
| 8083 | * |
| 8084 | * @param bool $use_block_editor Whether the post can be edited or not. |
| 8085 | * @param WP_Post $post The post being checked. |
| 8086 | */ |
| 8087 | return apply_filters( 'use_block_editor_for_post', $use_block_editor, $post ); |
| 8088 | } |
| 8089 | |
| 8090 | /** |
| 8091 | * Returns whether a post type is compatible with the block editor. |
| 8092 | * |
| 8093 | * The block editor depends on the REST API, and if the post type is not shown in the |
| 8094 | * REST API, then it won't work with the block editor. |
| 8095 | * |
| 8096 | * @since 5.0.0 |