mirror of
https://github.com/WordPress/WordPress.git
synced 2025-01-03 15:08:10 +01:00
Themes: Use instanceof in get_hooked_blocks.
In [56610], the get_hooked_blocks function was introduced. However, using property_exists within this function negatively impacted its performance. This commit replaces the property_exists function call with instanceof WP_Block_Type, resulting in improved performance. Props gziolo, spacedmonkey. See #59383. Built from https://develop.svn.wordpress.org/trunk@56677 git-svn-id: http://core.svn.wordpress.org/trunk@56189 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
158f4a8fcc
commit
73c8507a84
@ -752,7 +752,7 @@ function get_hooked_blocks( $name, $relative_position = '' ) {
|
|||||||
$block_types = WP_Block_Type_Registry::get_instance()->get_all_registered();
|
$block_types = WP_Block_Type_Registry::get_instance()->get_all_registered();
|
||||||
$hooked_blocks = array();
|
$hooked_blocks = array();
|
||||||
foreach ( $block_types as $block_type ) {
|
foreach ( $block_types as $block_type ) {
|
||||||
if ( ! property_exists( $block_type, 'block_hooks' ) || ! is_array( $block_type->block_hooks ) ) {
|
if ( ! ( $block_type instanceof WP_Block_Type ) || ! is_array( $block_type->block_hooks ) ) {
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
foreach ( $block_type->block_hooks as $anchor_block_type => $position ) {
|
foreach ( $block_type->block_hooks as $anchor_block_type => $position ) {
|
||||||
|
@ -16,7 +16,7 @@
|
|||||||
*
|
*
|
||||||
* @global string $wp_version
|
* @global string $wp_version
|
||||||
*/
|
*/
|
||||||
$wp_version = '6.4-alpha-56676';
|
$wp_version = '6.4-alpha-56677';
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.
|
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.
|
||||||
|
Loading…
Reference in New Issue
Block a user