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 |
|---|---|
| 1692 | * Filters the default context provided to a rendered block. |
| 1693 | * |
| 1694 | * @since 5.5.0 |
| 1695 | * @since 5.9.0 The `$parent_block` parameter was added. |
| 1696 | * |
| 1697 | * @param array $context Default context. |
| 1698 | * @param array $parsed_block Block being rendered, filtered by `render_block_data`. |
| 1699 | * @param WP_Block|null $parent_block If this is a nested block, a reference to the parent block. |
| 1700 | */ |
| 1701 | $context = apply_filters( 'render_block_context', $context, $parsed_block, $parent_block ); |
| 1702 | |
| 1703 | $block = new WP_Block( $parsed_block, $context ); |
| 1704 | |
| 1705 | return $block->render(); |
| 1706 | } |
| 1707 | |
| 1708 | /** |
| 1709 | * Parses blocks out of a content string. |
| 1710 | * |