Hello, I was using the following function to remove the inline customizer css, which worked until the last X theme update. Do I have to do this a different way now?
add_action( 'after_setup_theme', 'remove_inline_customizer_css' );
function remove_inline_customizer_css() {
remove_action('wp_head','x_output_generated_styles', 9998);
}
