brianmwadime
8/6/2015 - 2:38 AM

Display all action hooks on any Wordpress Page (credits to http://www.barrykooij.com/debugging-wordpress/)

Display all action hooks on any Wordpress Page (credits to http://www.barrykooij.com/debugging-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;
  } );

?>