I have a settings page tab that has 2 fields groups, and I can't see the title of the fields groups that I want to show to have a visual separator between the two groups.
Is it like this the title of the fields group is not visible? Or it's a bug?
Here's the code that I'm using to define one of the groups:
$meta_boxes[] = [
'title' => 'Tweets fetching API',
'id' => 'settings_admins__breaking_news',
'settings_pages' => ['settings_admins'],
'tab' => 'settings_admins__breaking_news_tab',
'fields' => [
[
'name' => 'Enable breaking news Twitter API',
'id' => $id = $prefix . 'breaking_news_enable_api',
'type' => 'checkbox',
'label_description' => '<code class="admins-only">' . $id . '',
'desc' => 'Check to enable the tweets fetching API • Run now',
],
[
'name' => 'Breaking news hashtag',
'id' => $id = $prefix . 'breaking_news_hashtag',
'type' => 'text',
'label_description' => '<code class="admins-only">' . $id . '',
'desc' => 'Capture tweets that only have one of these hashtags (<i>comma separated</i>).',
'size' => 32,
],
[
'name' => 'Default expiry time',
'id' => $id = $prefix . 'breaking_news_default_expiry',
'type' => 'number',
'label_description' => '<code class="admins-only">' . $id . '',
'desc' => 'The default expiry time (<i>in minutes</i>) for the auto created breaking news posts.',
'std' => 30,
'step' => 5,
'size' => 1,
],
],
];