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 |
|---|---|
| 8397 | |
| 8398 | /** |
| 8399 | * Filters whether a post is able to be edited in the block editor. |
| 8400 | * |
| 8401 | * @since 5.0.0 |
| 8402 | * |
| 8403 | * @param bool $use_block_editor Whether the post can be edited or not. |
| 8404 | * @param WP_Post $post The post being checked. |
| 8405 | */ |
| 8406 | return apply_filters( 'use_block_editor_for_post', $use_block_editor, $post ); |
| 8407 | } |
| 8408 | |
| 8409 | /** |
| 8410 | * Returns whether a post type is compatible with the block editor. |
| 8411 | * |
| 8412 | * The block editor depends on the REST API, and if the post type is not shown in the |
| 8413 | * REST API, then it won't work with the block editor. |
| 8414 | * |
| 8415 | * @since 5.0.0 |