Add page title after first block

The only I can think of is to use [parse_block()][1] and [render_block()][1] parse_block will parse html blocks into an array, and render_block will convert an array into content. Here is an example of how you can achieve what you want using the above functions (code not tested): <?php if (has_post_thumbnail()) { the_post_thumbnail(); } ?> <?php … Read more