Skip to content

Instantly share code, notes, and snippets.

@deeman
Created July 12, 2020 11:53
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save deeman/5ec0c86d39ffcb673eb1ea51c656c64c to your computer and use it in GitHub Desktop.
Save deeman/5ec0c86d39ffcb673eb1ea51c656c64c to your computer and use it in GitHub Desktop.
Dequeue Google Fonts in WordPress
add_filter( 'style_loader_src', function($href){
if(strpos($href, "//fonts.googleapis.com/") === false) {
return $href;
}
return false;
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment