Skip to content

Instantly share code, notes, and snippets.

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