add_section('section_single_page', array( 'title' => __('Single Page Option', 'akisa'), 'panel' => 'theme_option_panel' ) ); // Add Single Header Image enable setting and control. $wp_customize->add_setting( 'theme_options[single_page_header_image_as_header_image_enable]', array( 'default' => $default['single_page_header_image_as_header_image_enable'], 'sanitize_callback' => 'akisa_sanitize_checkbox', ) ); $wp_customize->add_control( 'theme_options[single_page_header_image_as_header_image_enable]', array( 'label' => esc_html__( 'Enable Header Image As Header Image', 'akisa' ), 'description' => __('If this option is Enable then Display Header Image as Header Image Otherwise display Featured Image as Header Image ', 'akisa'), 'section' => 'section_single_page', 'type' => 'checkbox', ) ); // Add category enable setting and control. $wp_customize->add_setting( 'theme_options[single_page_video_enable]', array( 'default' => $default['single_page_video_enable'], 'sanitize_callback' => 'akisa_sanitize_checkbox', ) ); $wp_customize->add_control( 'theme_options[single_page_video_enable]', array( 'label' => esc_html__( 'Enable Featured Video', 'akisa' ), 'section' => 'section_single_page', 'type' => 'checkbox', ) ); // Add category enable setting and control. $wp_customize->add_setting( 'theme_options[single_page_image_enable]', array( 'default' => $default['single_page_image_enable'], 'sanitize_callback' => 'akisa_sanitize_checkbox', ) ); $wp_customize->add_control( 'theme_options[single_page_image_enable]', array( 'label' => esc_html__( 'Enable Featured Image', 'akisa' ), 'section' => 'section_single_page', 'type' => 'checkbox', ) );