-
Notifications
You must be signed in to change notification settings - Fork 0
Type – Checkboxes
Henner R Setyono edited this page Mar 19, 2020
·
5 revisions
'font_subset' => [
'label' => __( 'Google Fonts Subset' ),
'type' => 'ct-checkboxes',
'attr' => [ 'data-columns' => '2' ],
'allow_empty' => true,
'choices' => [
'latin-ext' => __( 'Latin Ext' ),
'vietnamese' => __( 'Vietnamese' ),
'cyrillic' => __( 'Cyrillic' ),
'cyrillic-ext' => __( 'Cyrillic Extended' ),
'greek' => __( 'Greek' ),
'greek-ext' => __( 'Greek Extended' ),
],
]'font_subset' => [
'latin-ext' => true,
'vietnamese' => false,
'cyrillic' => false,
'cyrillic-ext' => false,
'greek' => false,
'greek-ext' => false,
],Where to apply the code above?
- The option snippet is for New Section Filter
- The value format is for Default Value Filter
Learn more:
