Editor: Fix `register_block_type` does not recognise `ancestor` block setting
When registering block through PHP, using `register_block_type` function, newly introduced `ancestor` block setting in `block.json` was not recognised. It worked though, when block is registered from JavaScript. Props lovor, annezazu. Fixes #56184. Built from https://develop.svn.wordpress.org/trunk@53718 git-svn-id: http://core.svn.wordpress.org/trunk@53277 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
31a5eaf174
commit
fdcb34fad3
|
@ -286,6 +286,7 @@ function register_block_type_from_metadata( $file_or_folder, $args = array() ) {
|
|||
'title' => 'title',
|
||||
'category' => 'category',
|
||||
'parent' => 'parent',
|
||||
'ancestor' => 'ancestor',
|
||||
'icon' => 'icon',
|
||||
'description' => 'description',
|
||||
'keywords' => 'keywords',
|
||||
|
|
|
@ -16,7 +16,7 @@
|
|||
*
|
||||
* @global string $wp_version
|
||||
*/
|
||||
$wp_version = '6.1-alpha-53717';
|
||||
$wp_version = '6.1-alpha-53718';
|
||||
|
||||
/**
|
||||
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.
|
||||
|
|
Loading…
Reference in New Issue