wpseek.com
Eine auf WordPress spezialiserte Suchmaschine für Entwickler und Theme-Autoren
get_hooked_blocks › WordPress Function
Seit6.4.0
Veraltetn/v
› get_hooked_blocks ( Keine Parameter )
Gibt zurück: |
|
Definiert in: |
|
Codex: |
Retrieves block types hooked into the given block, grouped by anchor block type and the relative position.
Ähnliche Funktionen: insert_hooked_blocks, get_allowed_block_types, get_dashboard_blog, set_ignored_hooked_blocks_metadata, do_blocks
Quellcode
function get_hooked_blocks() { $block_types = WP_Block_Type_Registry::get_instance()->get_all_registered(); $hooked_blocks = array(); foreach ( $block_types as $block_type ) { if ( ! ( $block_type instanceof WP_Block_Type ) || ! is_array( $block_type->block_hooks ) ) { continue; } foreach ( $block_type->block_hooks as $anchor_block_type => $relative_position ) { if ( ! isset( $hooked_blocks[ $anchor_block_type ] ) ) { $hooked_blocks[ $anchor_block_type ] = array(); } if ( ! isset( $hooked_blocks[ $anchor_block_type ][ $relative_position ] ) ) { $hooked_blocks[ $anchor_block_type ][ $relative_position ] = array(); } $hooked_blocks[ $anchor_block_type ][ $relative_position ][] = $block_type->name; } } return $hooked_blocks; }