I want to exclude/include nested groups, can this be done?
given this metabox structure:
$meta_boxes[] = array(
'title' => 'Page Section Selector',
'post_types' => array('page'),
'fields' => array(
array(
'id' => 'section_control',
'type' => 'group',
...
'add_button' => '+ Add Section',
'fields' => array(
array(...),
array(
'id' => 'cta_section',
'type' => 'group',
'include' => array('front-page.php')
...
'fields' => array(...)
),
array(...),
array(...),
array(
'id' => 'map_section',
'type' => 'group',
'include' => array('page.php')
...
'fields' => array(...)
),
)
),
)
)