Support

Account

Home Forums Gutenberg Block template Reply To: Block template

  • @ggus example worked for me, thank you!

    
    <?php
    $template = array(
    	array('acf/custom-block', array('data' => array('text_field'=> 'Test!'))),
    );
    ?>
    
    <div class="example-block">
    	<?php echo '<InnerBlocks template="' . esc_attr(wp_json_encode($template)) . '" />'; ?>
    </div>