render_block_{$this->name}

render_block_{$this->name}

Hook Type: filter

See hook in core

Displaying hooks found in version: wordpress-6.7.2

apply_filters('render_block_{$this->name}') is found 1 times:

  • /wp-includes/class-wp-block.php line 599
    595
    596
    597
    598
    599
    600
    601
    602
    603
    604
    605
    * @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_{$this->name}", $block_content, $this->parsed_block, $this );
     
    if ( $root_interactive_block === $this ) {
        // The root interactive block has finished rendering. Time to process directives.
        $block_content          = wp_interactivity_process_directives( $block_content );
        $root_interactive_block = null;
    }