Site logo

Archived topic

Remove Classic-themes.css completely

3 replies · Started by Ivaylo on November 17, 2022

Viewing posts 1–4 of 4

Hi, how can I remove classic-themes.css completely? It takes 260ms and is render blocking.
this is what I see in dev tools:
<link rel="stylesheet" id="classic-theme-styles-css" href="//www.domain.com/wp-includes/css/classic-themes.min.css?ver=1&ez_used_css_s=13" media="all" as="style" onload="this.onload=null;this.rel='stylesheet'">

Hi there,

its a core stylesheet, try adding this PHP to remove it:


add_action( 'wp_enqueue_scripts', function() {
    wp_dequeue_style( 'classic-theme-styles' );
}, 20 );

Thanks! Looks like it's now removed! Great 5 star support from you as usual!

Glad to be of help.

This archived topic is closed to new replies.