get_control( 'header_image' ); $background_image = $wp_customize->get_control( 'background_image' ); $background_color = $wp_customize->get_control( 'background_color' ); $header_text_color = $wp_customize->get_control( 'header_textcolor' ); if ( $header_image ) { $header_image->section = 'section-color-header'; $header_image->priority = 23; } if ( $background_image ) { $background_image->section = 'section-color-general'; } if ( $background_color ) { $background_color->priority = 22; $background_color->section = 'section-color-header'; } if ( $header_text_color ) { $header_text_color->priority = 5; $header_text_color->section = 'section-color-header'; } } } }// End if(). /** * Kicking this off by calling 'get_instance()' method */ ST_Customizer_Reset_Priority::get_instance();