Skip to content

Instantly share code, notes, and snippets.

@codehaiku
Created August 20, 2018 03:52
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 codehaiku/24ab43f2278ec68453d4e40a71258b20 to your computer and use it in GitHub Desktop.
Save codehaiku/24ab43f2278ec68453d4e40a71258b20 to your computer and use it in GitHub Desktop.
WordPress Show All Hooks
<?php
add_action( 'all', function ( $tag ) {
global $debug_tags;
if ( in_array( $tag, $debug_tags ) ) {
return;
}
echo $tag;
$debug_tags[] = $tag;
} );
@codehaiku
Copy link
Author

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment