Skip to content

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 );
} );

Clone this wiki locally