add_section( 'alley_home_services_container_width', array( 'title' => esc_html__( 'Container Width', 'alley-home-services' ), 'description' => esc_html__( 'Container Width :', 'alley-home-services' ), 'priority' => 12, ) ); $wp_customize->add_setting( 'container_width', array( 'default' => 1140, 'sanitize_callback' => 'absint', 'transport' => 'postMessage', ) ); $wp_customize->add_control( new Alley_Home_Services_Slider_Control( $wp_customize, 'container_width', array( 'section' => 'alley_home_services_container_width', 'settings' => 'container_width', 'label' => esc_html__( 'Container Width', 'alley-home-services' ), 'choices' => array( 'min' => 1024, 'max' => 1600, 'step' => 1, ) ) ) ); } }