Menu Adam R Brown

WP hooks navigation: Home/browseActions indexFilters index

Source View: use_block_editor_for_post_type

To save our bandwidth, we show only a snippet of code around each occurence of the hook. View complete file in SVN (without highlighting).

Understanding Source Code

The best way to understand what a hook does is to look at where it occurs in the source code.

Remember, this hook may occur in more than one file. Moreover, the hook's context may change from version to version.

Source View

Line Code
2196
2197      /**
2198       * Filters whether a post is able to be edited in the block editor.
2199       *
2200       * @since 5.0.0
2201       *
2202       * @param bool   $use_block_editor  Whether the post type can be edited or not. Default true.
2203       * @param string $post_type         The post type being checked.
2204       */
2205      return apply_filters( 'use_block_editor_for_post_type', true, $post_type );
2206 }
2207
2208 /**
2209  * Prepares server-registered blocks for the block editor.
2210  *
2211  * Returns an associative array of registered block data keyed by block name. Data includes properties
2212  * of a block relevant for client registration.
2213  *
2214  * @since 5.0.0