add_setting( 'educollege_theme_options[enable_frontpage_content]', array( 'sanitize_callback' => 'educollege_sanitize_checkbox', 'default' => $options['enable_frontpage_content'], ) ); $wp_customize->add_control( 'educollege_theme_options[enable_frontpage_content]', array( 'label' => esc_html__( 'Enable Content', 'educollege' ), 'description' => esc_html__( 'Check to enable content on static front page only.', 'educollege' ), 'section' => 'static_front_page', 'type' => 'checkbox', 'active_callback' => 'educollege_is_static_homepage_enable', ) );