add_section( 'ansupa_single_page_settings', array( 'title' => esc_html__( 'Single Pages', 'ansupa' ), 'description' => esc_html__( 'Settings for all single pages.', 'ansupa' ), 'panel' => 'ansupa_general_panel', ) ); // Featured image enable setting $wp_customize->add_setting( 'ansupa_enable_single_page_featured_img', array( 'sanitize_callback' => 'ansupa_sanitize_checkbox', 'default' => true, ) ); $wp_customize->add_control( 'ansupa_enable_single_page_featured_img', array( 'section' => 'ansupa_single_page_settings', 'label' => esc_html__( 'Enable featured image.', 'ansupa' ), 'type' => 'checkbox', ) );