hooked_block_{$hooked_block_type}

hooked_block_{$hooked_block_type}

Hook Type: filter

See hook in core

Displaying hooks found in version: wordpress-6.8

apply_filters('hooked_block_{$hooked_block_type}') is found 2 times:

  • /wp-includes/blocks.php line 985
    981
    982
    983
    984
    985
    986
    987
    988
    989
    990
    991
    * @param array                           $parsed_anchor_block The anchor block, in parsed block array format.
     * @param WP_Block_Template|WP_Post|array $context             The block template, template part, post object,
     *                                                             or pattern that the anchor block belongs to.
     */
    $parsed_hooked_block = apply_filters( "hooked_block_{$hooked_block_type}", $parsed_hooked_block, $hooked_block_type, $relative_position, $parsed_anchor_block, $context );
     
    if ( null === $parsed_hooked_block ) {
        continue;
    }
     
    // It's possible that the filter returned a block of a different type, so we explicitly
  • /wp-includes/blocks.php line 1043
    1039
    1040
    1041
    1042
    1043
    1044
    1045
    1046
    1047
    1048
        /** This filter is documented in wp-includes/blocks.php */
        $parsed_hooked_block = apply_filters( 'hooked_block', $parsed_hooked_block, $hooked_block_type, $relative_position, $parsed_anchor_block, $context );
     
        /** This filter is documented in wp-includes/blocks.php */
        $parsed_hooked_block = apply_filters( "hooked_block_{$hooked_block_type}", $parsed_hooked_block, $hooked_block_type, $relative_position, $parsed_anchor_block, $context );
     
        if ( null === $parsed_hooked_block ) {
            unset( $hooked_block_types[ $index ] );
        }
    }