Skip to content

Type – Panel

Henner R Setyono edited this page Jan 11, 2020 · 2 revisions

'my_panel' => [
  'label' => __( 'My Panel' ),
  'type' => 'ct-panel',
  'inner-options' => [
    'option1' => [ ... ],
    'option2' => [ ... ],
    'option3' => [ ... ],
  ]
]

Add On/Off Toggle

Inner Options only appear when the toggle is on

'my_panel' => [
  'label' => __( 'My Panel' ),
  'type' => 'ct-panel',
  'switch' => true,
  'inner-options' => [
    'option1' => [ ... ],
    'option2' => [ ... ],
    'option3' => [ ... ],
  ]
]

Value Format

'my_panel' => 'no'

Either 'yes' or 'no'

Clone this wiki locally