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 |
|---|---|
| 2075 | |
| 2076 | /** |
| 2077 | * Filter whether a post is able to be edited in the block editor. |
| 2078 | * |
| 2079 | * @since 5.0.0 |
| 2080 | * |
| 2081 | * @param bool $use_block_editor Whether the post can be edited or not. |
| 2082 | * @param WP_Post $post The post being checked. |
| 2083 | */ |
| 2084 | return apply_filters( 'use_block_editor_for_post', $use_block_editor, $post ); |
| 2085 | } |
| 2086 | |
| 2087 | /** |
| 2088 | * Return whether a post type is compatible with the block editor. |
| 2089 | * |
| 2090 | * The block editor depends on the REST API, and if the post type is not shown in the |
| 2091 | * REST API, then it won't work with the block editor. |
| 2092 | * |
| 2093 | * @since 5.0.0 |