remove_control('savana_lite_enable_slideshow_overlay'); $wp_customize->add_setting( 'blanco_lite_enable_related_posts', array( 'default' => 'on', 'sanitize_callback' => 'blanco_lite_checkbox_sanize', )); $wp_customize->add_control( 'blanco_lite_enable_related_posts' , array( 'type' => 'checkbox', 'section' => 'settings_section', 'label' => esc_html__('Related posts','blanco-lite'), 'description' => esc_html__('Do you want to display the related posts at the end of each article?','blanco-lite'), )); function blanco_lite_checkbox_sanize ($input) { return $input ? true : false; } } add_action( 'customize_register', 'blanco_lite_customize_register', 11 ); } ?>