NEXT craftinamerica.org. Base setup for headless wordpress https://www.craftinamerica.org
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

reformat-blocks.php 522B

123456789101112131415
  1. <?php
  2. function get_rearrange_blocks($blocks) {
  3. $parsed_blocks = array();
  4. foreach( $blocks as $block ) {
  5. if(sizeof($block[innerBlocks]) < 1 && $block[innerHTML] !== "\n\n") {
  6. array_push($parsed_blocks, $block[innerHTML]);
  7. } elseif ($block[innerHTML] === "\n\n") {
  8. array_push($parsed_blocks, null);
  9. } else {
  10. array_push($parsed_blocks, $block[innerBlocks]);
  11. }
  12. }
  13. return $parsed_blocks;
  14. }
  15. ?>