add_section('homepage', array( 'title' => esc_html_x('Homepage Options', 'customizer section title', 'bsun4'), )); $wp_customize->add_setting('home_slider_category', array( 'default' => 0, 'sanitize_callback' => 'absint', )); $wp_customize->add_control(new My_Dropdown_Category_Control($wp_customize, 'home_slider_category', array( 'section' => 'homepage', 'label' => esc_html__('Slider posts category', 'bsun4'), 'description' => esc_html__('Select the category that the slider will show posts from. If no category is selected, the slider will be disabled.', 'bsun4'), ))); } add_action('customize_register', 'BSun4CustomizerRegister');