Skip to content

Instantly share code, notes, and snippets.

@arifhazwan
Created March 3, 2019 23:16
Show Gist options
  • Save arifhazwan/fdd2f71ef6080f5f66a24d9443fb1b24 to your computer and use it in GitHub Desktop.
Save arifhazwan/fdd2f71ef6080f5f66a24d9443fb1b24 to your computer and use it in GitHub Desktop.
Wordpress Functions Disable CSS Load
add_filter( 'style_loader_src', function($href){
if(strpos($href, "stylesheet.min.css") == true) {
return false;
}
return $href;
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment