Skip to content

Instantly share code, notes, and snippets.

@doubleedesign
Created April 28, 2021 03:48
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 doubleedesign/96c7d0c9a025fe58d8dd655c80e1f833 to your computer and use it in GitHub Desktop.
Save doubleedesign/96c7d0c9a025fe58d8dd655c80e1f833 to your computer and use it in GitHub Desktop.
Log all WordPress hooks that run
<?php
function doublee_log_all_actions() {
foreach($GLOBALS['wp_actions'] as $action => $count) {
error_log(print_r($action, true));
}
}
add_action('shutdown', 'doublee_log_all_actions');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment