How to disable wordpress from overload my stylesheet styles with customizer styles
I’m not familiar with the customizer specifically, but if it does it’s style inclusion properly (via wp_enqueue_style), then you can do something like the following in a plugin: function remove_or_reorganize_styles() { if ( wp_style_is(‘target-style-handle’, ‘enqueued’ ) ) { wp_dequeue_style( ‘target-style-handle’ ); } } add_action(‘wp_enqueue_scripts’, ‘remove_or_reorganize_styles’, 99); This assumes that target-style-handle is the handle used to … Read more