register_control_type( 'Bootstrap_Coach_Control_Sortable' ); $wp_customize->register_control_type( 'Bootstrap_Coach_Toggle_Control' ); $wp_customize->register_control_type( 'Bootstrap_Coach_Slider_Control' ); $wp_customize->register_control_type( 'Bootstrap_Coach_Select_Control' ); $wp_customize->register_section_type( 'Bootstrap_Coach_Customize_Section_Pro_Control' ); } endif; add_action( 'customize_register', 'bootstrap_coach_register_custom_controls' ); function bootstrap_coach_enqueue_custom_admin_style() { wp_register_style( 'bootstrap-coach-upgrade-to-pro', get_template_directory_uri() . '/inc/custom-controls/upgrade-to-pro/upgrade-to-pro.css', false ); wp_enqueue_style( 'bootstrap-coach-upgrade-to-pro' ); wp_enqueue_script( 'bootstrap-coach-upgrade-to-pro', get_template_directory_uri() . '/inc/custom-controls/upgrade-to-pro/upgrade-to-pro.js', array( 'jquery' ), false, true ); } add_action( 'admin_enqueue_scripts', 'bootstrap_coach_enqueue_custom_admin_style' );