/*register custom flexible section*/
add_action('acf/init', 'my_acf_init_block_types');
function my_acf_init_block_types() {
if( function_exists('acf_register_block_type') ) {
acf_register_block_type(array(
'name' => 'flexible-content',
'title' => __('Flexible Content'),
'description' => __('A custom Flexible Content block.'),
'render_template' => 'templates/template-common.php',
'category' => 'formatting',
'icon' => 'admin-comments',
'keywords' => array( 'flexible' ),
));
}
}

