hello, I'm wondering how you use the parse_blocks function if the block you are looking for is an inner block ? Indeed with gutenberg it is now very easy to use columns for the layout and then your blocks are inner blocks. Problem is that if the above mentioned function does't see them if you do for example
´´´
$blocks = parse_blocks( get_the_content() );
foreach ( $blocks as $block ) {
if ( 'test/test' !== $block['blockName'] ) {
continue;
}
´´´
Or am I totally wrong ?