register_control_type( 'Bootstrap_Blog_Radio_Buttonset_Control' ); $wp_customize->register_control_type( 'Bootstrap_Blog_Radio_Image_Control' ); $wp_customize->register_control_type( 'Bootstrap_Blog_Select_Control' ); $wp_customize->register_control_type( 'Bootstrap_Blog_Slider_Control' ); $wp_customize->register_control_type( 'Bootstrap_Blog_Toggle_Control' ); $wp_customize->register_control_type( 'Bootstrap_Blog_Control_Sortable' ); $wp_customize->register_control_type( 'Bootstrap_Blog_Multi_Check_Control' ); $wp_customize->register_section_type( 'Bootstrap_Blog_Customize_Section_Pro_Control' ); $wp_customize->register_control_type( 'Bootstrap_Blog_Control_Upgrade_To_Pro' ); } endif; add_action( 'customize_register', 'bootstrap_blog_register_custom_controls' ); function bootstrap_blog_enqueue_custom_admin_style() { wp_register_style( 'bootstrap-blog-upgrade-to-pro', get_template_directory_uri() . '/inc/custom-controls/upgrade-to-pro/upgrade-to-pro.css', false ); wp_enqueue_style( 'bootstrap-blog-upgrade-to-pro' ); wp_enqueue_script( 'bootstrap-blog-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_blog_enqueue_custom_admin_style' );