Skip to content

Instantly share code, notes, and snippets.

@dlh01
Created July 28, 2022 03:08
Show Gist options
  • Save dlh01/abd89e97f59c1b95845c09dcea73c3a8 to your computer and use it in GitHub Desktop.
Save dlh01/abd89e97f59c1b95845c09dcea73c3a8 to your computer and use it in GitHub Desktop.
<?php
function flatten_blocks( array $blocks ) {
reset( $blocks );
$out = [];
while ( $block = array_shift( $blocks ) ) {
$out[] = $block;
if ( ! empty( $block['innerBlocks'] ) ) {
array_unshift( $blocks, ...$block['innerBlocks'] );
}
}
return $out;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment