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 |
|---|---|
| 7994 | |
| 7995 | /** |
| 7996 | * Filters whether a post is able to be edited in the block editor. |
| 7997 | * |
| 7998 | * @since 5.0.0 |
| 7999 | * |
| 8000 | * @param bool $use_block_editor Whether the post can be edited or not. |
| 8001 | * @param WP_Post $post The post being checked. |
| 8002 | */ |
| 8003 | return apply_filters( 'use_block_editor_for_post', $use_block_editor, $post ); |
| 8004 | } |
| 8005 | |
| 8006 | /** |
| 8007 | * Returns whether a post type is compatible with the block editor. |
| 8008 | * |
| 8009 | * The block editor depends on the REST API, and if the post type is not shown in the |
| 8010 | * REST API, then it won't work with the block editor. |
| 8011 | * |
| 8012 | * @since 5.0.0 |