first commit
This commit is contained in:
29
wp/wp-includes/blocks/index.php
Normal file
29
wp/wp-includes/blocks/index.php
Normal file
@@ -0,0 +1,29 @@
|
||||
<?php
|
||||
/**
|
||||
* Used to set up all core blocks used with the block editor.
|
||||
*
|
||||
* @package WordPress
|
||||
*/
|
||||
|
||||
define( 'BLOCKS_PATH', ABSPATH . WPINC . '/blocks/' );
|
||||
|
||||
// Include files required for core blocks registration.
|
||||
require BLOCKS_PATH . 'legacy-widget.php';
|
||||
require BLOCKS_PATH . 'widget-group.php';
|
||||
require BLOCKS_PATH . 'require-dynamic-blocks.php';
|
||||
|
||||
/**
|
||||
* 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 = require BLOCKS_PATH . 'require-static-blocks.php';
|
||||
foreach ( $block_folders as $block_folder ) {
|
||||
register_block_type(
|
||||
BLOCKS_PATH . $block_folder
|
||||
);
|
||||
}
|
||||
}
|
||||
add_action( 'init', 'register_core_block_types_from_metadata' );
|
||||
Reference in New Issue
Block a user