Wordpress Logo

ACF: Block registrieren

function register_acf_block_types() {
    acf_register_block_type(array(
        'name'              => 'Block Name',
        'title'             => __('Block Titel'),
        'description'       => __('Block Beschreibung'),
        'render_template'   => 'template-parts/blocks/block-name/block-name.php',
        'category'          => 'formatting',
        'icon'              => 'admin-comments',
        'keywords'          => array( 'Dings', 'Bums' ),
    ));
}