-
Notifications
You must be signed in to change notification settings - Fork 0
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' => [ ... ],
]
]Inner Options only appear when the toggle is on
'my_panel' => [
'label' => __( 'My Panel' ),
'type' => 'ct-panel',
'switch' => true,
'inner-options' => [
'option1' => [ ... ],
'option2' => [ ... ],
'option3' => [ ... ],
]
]'my_panel' => 'no'Either 'yes' or 'no'
Where to apply the code above?
- The option snippet is for New Section Filter
- The value format is for Default Value Filter
Learn more:

