Editor: Use register_block_type_from_metadata in register_core_block_types_from_metadata.

Use `register_block_type_from_metadata` in `register_core_block_types_from_metadata` function instead of `register_block_type`. This saves an unnecessary call to `file_exists` in `register_block_type` as core block files will always exist. 

Props nihar007, spacedmonkey, mukesh27, gziolo, sudipatel007.
Fixes #58342.
Built from https://develop.svn.wordpress.org/trunk@55879


git-svn-id: http://core.svn.wordpress.org/trunk@55391 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
spacedmonkey 2023-06-05 09:31:23 +00:00
parent 5a35e1a831
commit 1634a10025
2 changed files with 2 additions and 2 deletions

View File

@ -21,7 +21,7 @@ require BLOCKS_PATH . 'require-dynamic-blocks.php';
function register_core_block_types_from_metadata() {
$block_folders = require BLOCKS_PATH . 'require-static-blocks.php';
foreach ( $block_folders as $block_folder ) {
register_block_type(
register_block_type_from_metadata(
BLOCKS_PATH . $block_folder
);
}

View File

@ -16,7 +16,7 @@
*
* @global string $wp_version
*/
$wp_version = '6.3-alpha-55878';
$wp_version = '6.3-alpha-55879';
/**
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.