render_block, $block_content, $this->parsed_block, $this
render_block, $block_content, $this->parsed_block, $this
Appears in: 7.0.3
Hook Type: filter
Displaying hooks found in version: 7.0.3apply_filters('render_block, $block_content, $this->parsed_block, $this') is found 1 times:
- /wp-includes/class-wp-block.php line 648
* @param string $block_content The block content. * @param array $block The full block, including name and attributes. * @param WP_Block $instance The block instance. */ $block_content = apply_filters( 'render_block', $block_content, $this->parsed_block, $this ); /** * Filters the content of a single block. * * The dynamic portion of the hook name, `$name`, refers to * the block name, e.g. "core/paragraph".