Disable the classic themes CSS in WordPress 6.1

Disable the classic themes CSS in WordPress 6.1 on child sites.

Snippet Type

Execute on Child Sites

Snippet

function disable_classic_theme_styles() {
    wp_deregister_style('classic-theme-styles');
    wp_dequeue_style('classic-theme-styles');
}
add_filter('wp_enqueue_scripts', 'disable_classic_theme_styles', 100);

This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.