Skip to content

Instantly share code, notes, and snippets.

@gofishwbeeler
Created April 2, 2019 19:36
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 gofishwbeeler/f496ba9826b72142b190146b0e4b57fb to your computer and use it in GitHub Desktop.
Save gofishwbeeler/f496ba9826b72142b190146b0e4b57fb to your computer and use it in GitHub Desktop.
De-register all Styles from Wordpress
function gfd_remove_all_styles() {
global $wp_styles;
$wp_styles->queue = array();
}
add_action('wp_print_styles', 'gfd_remove_all_styles', 100);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment