From f29ba5589886cf4059839f4f698e5e7f93007741 Mon Sep 17 00:00:00 2001 From: Bernie Reiter Date: Tue, 14 Nov 2023 17:50:10 +0500 Subject: [PATCH] Change argument order --- src/wp-includes/blocks.php | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/wp-includes/blocks.php b/src/wp-includes/blocks.php index a778a9376f13b..864a9be77b010 100644 --- a/src/wp-includes/blocks.php +++ b/src/wp-includes/blocks.php @@ -757,7 +757,7 @@ function get_hooked_blocks() { return $hooked_blocks; } -function insert_hooked_blocks( $relative_position, &$anchor_block, $hooked_blocks, $context ) { +function insert_hooked_blocks( &$anchor_block, $relative_position, $hooked_blocks, $context ) { $anchor_block_type = $anchor_block['blockName']; $hooked_block_types = isset( $hooked_blocks[ $anchor_block_type ][ $relative_position ] ) ? $hooked_blocks[ $anchor_block_type ][ $relative_position ] @@ -833,10 +833,10 @@ function make_before_block_visitor( $hooked_blocks, $context ) { if ( $parent_block && ! $prev ) { // Candidate for first-child insertion. - $markup .= insert_hooked_blocks( 'first_child', $parent_block, $hooked_blocks, $context ); + $markup .= insert_hooked_blocks( $parent_block, 'first_child', $hooked_blocks, $context ); } - $markup .= insert_hooked_blocks( 'before', $block, $hooked_blocks, $context ); + $markup .= insert_hooked_blocks( $block, 'before', $hooked_blocks, $context ); return $markup; }; @@ -872,11 +872,11 @@ function make_after_block_visitor( $hooked_blocks, $context ) { * @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 ) { - $markup = insert_hooked_blocks( 'after', $block, $hooked_blocks, $context ); + $markup = insert_hooked_blocks( $block, 'after', $hooked_blocks, $context ); if ( $parent_block && ! $next ) { // Candidate for last-child insertion. - $markup .= insert_hooked_blocks( 'last_child', $parent_block, $hooked_blocks, $context ); + $markup .= insert_hooked_blocks( $parent_block, 'last_child', $hooked_blocks, $context ); } return $markup;