register_control_type( 'Alurra_Radio_Image_Control' ); $wp_customize->register_control_type( 'Alurra_Select_Control' ); $wp_customize->register_control_type( 'Alurra_Slider_Control' ); $wp_customize->register_control_type( 'Alurra_Toggle_Control' ); $wp_customize->register_control_type( 'Alurra_Typography_Control' ); // Panels // Modify default WordPress sections and controls $wp_customize->get_control( 'blogdescription' )->label = esc_html__( 'Site Description', 'alurra' ); $wp_customize->get_section( 'colors' )->panel = 'colors'; $wp_customize->get_section( 'colors' )->priority = 10; $wp_customize->get_section( 'colors' )->title = esc_html__( 'Main Body', 'alurra' ); $wp_customize->get_control( 'site_icon' )->priority = 68; } endif; add_action( 'customize_register', 'alurra_register_custom_controls' );