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 |
|---|---|
| 2090 | |
| 2091 | /** |
| 2092 | * Filter whether a post is able to be edited in the block editor. |
| 2093 | * |
| 2094 | * @since 5.0.0 |
| 2095 | * |
| 2096 | * @param bool $use_block_editor Whether the post can be edited or not. |
| 2097 | * @param WP_Post $post The post being checked. |
| 2098 | */ |
| 2099 | return apply_filters( 'use_block_editor_for_post', $use_block_editor, $post ); |
| 2100 | } |
| 2101 | |
| 2102 | /** |
| 2103 | * Return whether a post type is compatible with the block editor. |
| 2104 | * |
| 2105 | * The block editor depends on the REST API, and if the post type is not shown in the |
| 2106 | * REST API, then it won't work with the block editor. |
| 2107 | * |
| 2108 | * @since 5.0.0 |