get_block_file_template хук-фильтрWP 5.9.0

Filters the block template object after it has been (potentially) fetched from the theme file.

Использование

add_filter( 'get_block_file_template', 'wp_kama_get_block_file_template_filter', 10, 3 );

/**
 * Function for `get_block_file_template` filter-hook.
 * 
 * @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: `'wp_template'` or '`wp_template_part'`.
 *
 * @return WP_Block_Template|null
 */
function wp_kama_get_block_file_template_filter( $block_template, $id, $template_type ){

	// filter...
	return $block_template;
}
$block_template(WP_Block_Template|null)
The found block template, or null if there is none.
$id(строка)
Template unique identifier (example: theme_slug//template_slug).
$template_type(строка)
Template type: 'wp_template' or 'wp_template_part'.

Список изменений

С версии 5.9.0 Введена.

Где вызывается хук

get_block_file_template()
get_block_file_template
wp-includes/block-template-utils.php 1139
return apply_filters( 'get_block_file_template', $block_template, $id, $template_type );
wp-includes/block-template-utils.php 1113
return apply_filters( 'get_block_file_template', null, $id, $template_type );
wp-includes/block-template-utils.php 1119
return apply_filters( 'get_block_file_template', null, $id, $template_type );
wp-includes/block-template-utils.php 1125
return apply_filters( 'get_block_file_template', null, $id, $template_type );

Где используется хук в WordPress

Использование не найдено.