wpseek.com
Eine auf WordPress spezialiserte Suchmaschine für Entwickler und Theme-Autoren
make_after_block_visitor is private and should not be used in themes or plugins directly.
make_after_block_visitor › WordPress Function
Seit6.4.0
Veraltetn/v
› make_after_block_visitor ( $hooked_blocks, $context, $callback = 'insert_hooked_blocks' )
Zugriff: |
|
Parameter: (3) |
|
Gibt zurück: |
|
Definiert in: |
|
Codex: | |
Changelog: |
|
Returns a function that injects the hooked blocks after a given block.
The returned function can be used as$post_callback
argument to traverse_and_serialize_block(s)
,
where it will append the markup for any blocks hooked after
the given block and as its parent's
last_child
, respectively.
This function is meant for internal use only.Ähnliche Funktionen: make_before_block_visitor, register_block_style, filter_block_kses, resolve_pattern_blocks, register_block_core_site_logo
Quellcode
function make_after_block_visitor( $hooked_blocks, $context, $callback = 'insert_hooked_blocks' ) { /** * Injects hooked blocks after the given block, and returns the serialized markup. * * Append the markup for any blocks hooked `after` the given block and as its parent's * `last_child`, respectively, to the serialized markup for the given block. * * @param array $block The block to inject the hooked blocks after. Passed by reference. * @param array $parent_block The parent block of the given block. Passed by reference. Default null. * @param array $next The next sibling block of the given block. Default null. * @return string The serialized markup for the given block, with the markup for any hooked blocks appended to it. */ return function ( &$block, &$parent_block = null, $next = null ) use ( $hooked_blocks, $context, $callback ) { $markup = call_user_func_array( $callback, array( &$block, 'after', $hooked_blocks, $context ) ); if ( $parent_block && ! $next ) { // Candidate for last-child insertion. $markup .= call_user_func_array( $callback, array( &$parent_block, 'last_child', $hooked_blocks, $context ) ); } return $markup; }; }