Skip to content

Instantly share code, notes, and snippets.

@sourovroy
Last active January 12, 2017 06:10
Show Gist options
  • Save sourovroy/9c8febdd6e12cd156bb604e0ece7706f to your computer and use it in GitHub Desktop.
Save sourovroy/9c8febdd6e12cd156bb604e0ece7706f to your computer and use it in GitHub Desktop.
Show all hook of wordpress
<?php
$debug_tags = array();
add_action( 'all', function ( $tag ) {
global $debug_tags;
if ( in_array( $tag, $debug_tags ) ) {
return;
}
echo "<pre>" . $tag . "</pre>";
$debug_tags[] = $tag;
} );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment