add_section( 'archive_settings', array( 'title' => esc_html__( 'Archive Settings', 'ashlar' ), 'priority' => 35, 'capability' => 'edit_theme_options', 'panel' => 'theme_option_panel', ) ); $wp_customize->add_setting('ed_post_filter', array( 'default' => $ashlar_default['ed_post_filter'], 'capability' => 'edit_theme_options', 'sanitize_callback' => 'ashlar_sanitize_checkbox', ) ); $wp_customize->add_control('ed_post_filter', array( 'label' => esc_html__('Enable Archive Post Filter', 'ashlar'), 'section' => 'archive_settings', 'type' => 'checkbox', ) );