From 537eb2145a356b471f474927ab8458ddef6802c1 Mon Sep 17 00:00:00 2001 From: Jonny Harris Date: Mon, 5 Jun 2023 09:29:53 +0000 Subject: [PATCH] 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. git-svn-id: https://develop.svn.wordpress.org/trunk@55879 602fd350-edb4-49c9-b593-d223f7449a82 --- src/wp-includes/blocks/index.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/wp-includes/blocks/index.php b/src/wp-includes/blocks/index.php index e372a74a48..654e2fd02c 100644 --- a/src/wp-includes/blocks/index.php +++ b/src/wp-includes/blocks/index.php @@ -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 ); }