Support

Account

Home Forums Gutenberg Adding ACF blocks to a block template Reply To: Adding ACF blocks to a block template

  • In case anyone is still looking for a solution to adding repeater fields as default template:

    $template = [
        ['acf/acf-block-name', [
            'data' => [
                'repeater_field_name_0_title' => 'Your title here',
                'repeater_field_name_0_text' => 'Your text here',
                'repeater_field_name_0_button' => [
                    'title' => 'Button title',
                    'url' => 'Button URL',
                    'target' => 'Button URL'
                ],
                'repeater_field_name' => 1,
            ]
        ]],
    ];

    I hope this will help someone. 🙂