Options
Tabbed option pages
Group larger settings screens into predictable nested arrays.
#Define tabs and assignments
'tabs' => [
['value' => 'branding', 'label' => 'Branding'],
['value' => 'social', 'label' => 'Social profiles'],
],
'fields' => [
['field_key' => 'logo_text', 'label' => 'Logo text', 'type' => 'text', 'tab' => 'branding'],
['field_key' => 'linkedin', 'label' => 'LinkedIn URL', 'type' => 'text', 'tab' => 'social'],
],#Saved option shape
[
'branding' => ['logo_text' => 'Voxycure'],
'social' => ['linkedin' => 'https://linkedin.com/company/example'],
]#Read a nested value
$linkedin = voxycure_get_option('theme_settings.social.linkedin');