get_block_file_template

get_block_file_template

Appears in: , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , ,
Hook Type: filter
See hook in action

See hook in core

Displaying hooks found in version: wordpress-6.7.2

apply_filters('get_block_file_template') is found 3 times:

  • /wp-includes/block-template-utils.php line 1318

    $parts = explode( ‘//’, $id, 2 );
    if ( count( $parts ) < 2 ) { /** This filter is documented in wp-includes/block-template-utils.php */ return apply_filters( 'get_block_file_template', null, $id, $template_type ); } list( $theme, $slug ) = $parts; if ( get_stylesheet() === $theme ) { $template_file = _get_block_template_file( $template_type, $slug ); if ( null !== $template_file ) { [/php]

  • /wp-includes/block-template-utils.php line 1328
    1324
    1325
    1326
    1327
    1328
    1329
    1330
    1331
    1332
    1333
    1334
        if ( null !== $template_file ) {
            $block_template = _build_block_template_result_from_file( $template_file, $template_type );
     
            /** This filter is documented in wp-includes/block-template-utils.php */
            return apply_filters( 'get_block_file_template', $block_template, $id, $template_type );
        }
    }
     
    $block_template = WP_Block_Templates_Registry::get_instance()->get_by_slug( $slug );
     
    /**
  • /wp-includes/block-template-utils.php line 1343
    1339
    1340
    1341
    1342
    1343
    1344
    1345
    1346
    1347
    1348
    1349
         * @param WP_Block_Template|null $block_template The found block template, or null if there is none.
         * @param string                 $id             Template unique identifier (example: 'theme_slug//template_slug').
         * @param string                 $template_type  Template type. Either 'wp_template' or 'wp_template_part'.
         */
        return apply_filters( 'get_block_file_template', $block_template, $id, $template_type );
    }
     
    /**
     * Prints a block template part.
     *
     * @since 5.9.0

See this hook used in plugins: