Skip to content

Instantly share code, notes, and snippets.

@matthijs166
Created June 29, 2019 12:35
Show Gist options
  • Save matthijs166/2c63ca439b99c03b969333ee73907abf to your computer and use it in GitHub Desktop.
Save matthijs166/2c63ca439b99c03b969333ee73907abf to your computer and use it in GitHub Desktop.
$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