Skip to content

Instantly share code, notes, and snippets.

@javierarcheni
Created July 22, 2017 18:22
Show Gist options
  • Save javierarcheni/ca4f60d5f9fbf9869a327fe591cecfbc to your computer and use it in GitHub Desktop.
Save javierarcheni/ca4f60d5f9fbf9869a327fe591cecfbc to your computer and use it in GitHub Desktop.
Find all functions attached to some hook in WordPress. Useful to dequeue unnecessary stuff.
/* wp_filter variable will tell */
<?php global $wp_filter;
echo '<pre>';
var_dump( $wp_filter['wp_enqueue_scripts'] );
echo '</pre>';
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment