244 | | return apply_filters( 'render_block', $block_content, $this->parsed_block ); |
| 244 | $block_content = apply_filters( 'render_block', $block_content, $this->parsed_block ); |
| 245 | |
| 246 | /** |
| 247 | * Filters the content of a single block. |
| 248 | * |
| 249 | * The dynamic portion of the hook name, `$name`, refers to |
| 250 | * the block name - "namespace/block". |
| 251 | * |
| 252 | * @since x.y.z |
| 253 | * |
| 254 | * @param string $block_content The block content about to be appended. |
| 255 | * @param array $block The full block, including name and attributes. |
| 256 | */ |
| 257 | return apply_filters( "render_block_{$this->name}", $block_content, $this->parsed_block ); |