Editor: Move core blocks registration to init hook

After working on support for register_block_type_args filter in #49615, it became clear that we need to use init action for core blocks to make it possible to use this filter.

Fixes #50263.


Built from https://develop.svn.wordpress.org/trunk@48279


git-svn-id: http://core.svn.wordpress.org/trunk@48048 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
gziolo 2020-07-02 17:22:03 +00:00
parent f7d2a408d9
commit 707cb4a35b
2 changed files with 46 additions and 37 deletions

View File

@ -18,7 +18,14 @@ require ABSPATH . WPINC . '/blocks/shortcode.php';
require ABSPATH . WPINC . '/blocks/social-link.php';
require ABSPATH . WPINC . '/blocks/tag-cloud.php';
$block_folders = array(
/**
* Registers core block types using metadata files.
* Dynamic core blocks are registered separately.
*
* @since 5.5.0
*/
function register_core_block_types_from_metadata() {
$block_folders = array(
'audio',
'button',
'buttons',
@ -49,10 +56,12 @@ $block_folders = array(
'text-columns',
'verse',
'video',
);
);
foreach ( $block_folders as $block_folder ) {
foreach ( $block_folders as $block_folder ) {
register_block_type_from_metadata(
ABSPATH . WPINC . '/blocks/' . $block_folder
);
}
}
add_action( 'init', 'register_core_block_types_from_metadata' );

View File

@ -13,7 +13,7 @@
*
* @global string $wp_version
*/
$wp_version = '5.5-alpha-48278';
$wp_version = '5.5-alpha-48279';
/**
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.