Menu Adam R Brown

WP hooks navigation: Home/browseActions indexFilters index

Source View: rest_prepare_block_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
308            *
309            * Allows modification of the block type data right before it is returned.
310            *
311            * @since 5.5.0
312            *
313            * @param WP_REST_Response $response   The response object.
314            * @param WP_Block_Type    $block_type The original block type object.
315            * @param WP_REST_Request  $request    Request used to generate the response.
316            */
317           return apply_filters( 'rest_prepare_block_type', $response, $block_type, $request );
318      }
319
320      /**
321       * Prepares links for the request.
322       *
323       * @since 5.5.0
324       *
325       * @param WP_Block_Type $block_type Block type data.
326       * @return array Links for the given block type.