wp_theme_json_data_blocks

wp_theme_json_data_blocks

Appears in: , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , ,
Hook Type: filter

See hook in core

Displaying hooks found in version: wordpress-6.7.2

apply_filters('wp_theme_json_data_blocks') is found 1 times:

  • /wp-includes/class-wp-theme-json-resolver.php line 425
    421
    422
    423
    424
    425
    426
    427
    428
    429
    430
    431
    * @since 6.1.0
     *
     * @param WP_Theme_JSON_Data $theme_json Class to access and update the underlying data.
     */
    $theme_json = apply_filters( 'wp_theme_json_data_blocks', new WP_Theme_JSON_Data( $config, 'blocks' ) );
     
    /*
     * Backward compatibility for extenders returning a WP_Theme_JSON_Data
     * compatible class that is not a WP_Theme_JSON_Data object.
     */
    if ( $theme_json instanceof WP_Theme_JSON_Data ) {