-
Notifications
You must be signed in to change notification settings - Fork 0
Add New Section
Henner R Setyono edited this page Jan 11, 2020
·
5 revisions
Use this filter during after_setup_theme:
add_filter( 'h_customizer_options', function( $sections ) {
return wp_parse_args( [
'section_id' => [
'title' => __( 'Section Name' ),
'container' => [ 'priority' => 10 ],
'css_selector' => ':root',
'options' => [
'option1' => [ ... ],
'option2' => [ ... ],
'option3' => [ ... ],
]
]
], $sections );
} );Where to apply the code above?
- The option snippet is for New Section Filter
- The value format is for Default Value Filter
Learn more: