This commit is contained in:
Hanson.xyz Dev
2026-01-04 17:50:08 -06:00
parent 7e45ce0756
commit acc8ac87a0
4131 changed files with 232562 additions and 250244 deletions
+27 -8
View File
@@ -344,11 +344,8 @@ function _get_block_template_file( $template_type, $slug ) {
return _add_block_template_part_area_info( $new_template_item );
}
if ( 'wp_template' === $template_type ) {
return _add_block_template_info( $new_template_item );
}
return $new_template_item;
// If it's not a `wp_template_part`, it must be a `wp_template`.
return _add_block_template_info( $new_template_item );
}
}
@@ -440,7 +437,7 @@ function _get_block_templates_files( $template_type, $query = array() ) {
if ( 'wp_template_part' === $template_type ) {
$candidate = _add_block_template_part_area_info( $new_template_item );
if ( ! isset( $area ) || ( isset( $area ) && $area === $candidate['area'] ) ) {
if ( ! isset( $area ) || $area === $candidate['area'] ) {
$template_files[ $template_slug ] = $candidate;
}
}
@@ -1230,7 +1227,20 @@ function get_block_templates( $query = array(), $template_type = 'wp_template' )
return true;
}
);
$query_result = array_merge( $query_result, $matching_registered_templates );
$matching_registered_templates = array_map(
function ( $template ) {
$template->content = apply_block_hooks_to_content(
$template->content,
$template,
'insert_hooked_blocks_and_set_ignored_hooked_blocks_metadata'
);
return $template;
},
$matching_registered_templates
);
$query_result = array_merge( $query_result, $matching_registered_templates );
}
}
@@ -1326,9 +1336,10 @@ function get_block_template( $id, $template_type = 'wp_template' ) {
}
/**
* Retrieves a unified template object based on a theme file.
* Retrieves a unified template object based on a theme file or plugin registration.
*
* This is a fallback of get_block_template(), used when no templates are found in the database.
* Also checks for templates registered via the Template Registration API.
*
* @since 5.9.0
*
@@ -1374,6 +1385,14 @@ function get_block_file_template( $id, $template_type = 'wp_template' ) {
$block_template = WP_Block_Templates_Registry::get_instance()->get_by_slug( $slug );
if ( $block_template ) {
$block_template->content = apply_block_hooks_to_content(
$block_template->content,
$block_template,
'insert_hooked_blocks_and_set_ignored_hooked_blocks_metadata'
);
}
/**
* Filters the block template object after it has been (potentially) fetched from the theme file.
*