Menu Adam R Brown

WP hooks navigation: Home/browseActions indexFilters index

Source View: render_block_context

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
888       * Filters the default context provided to a rendered block.
889       *
890       * @since 5.5.0
891       * @since 5.9.0 The `$parent_block` parameter was added.
892       *
893       * @param array         $context      Default context.
894       * @param array         $parsed_block Block being rendered, filtered by `render_block_data`.
895       * @param WP_Block|null $parent_block If this is a nested block, a reference to the parent block.
896       */
897      $context = apply_filters( 'render_block_context', $context, $parsed_block, $parent_block );
898
899      $block = new WP_Block( $parsed_block, $context );
900
901      return $block->render();
902 }
903
904 /**
905  * Parses blocks out of a content string.
906  *