Skip to content

Instantly share code, notes, and snippets.

@leonkorteweg
Created July 8, 2016 09:58
Show Gist options
  • Save leonkorteweg/18ac8191b35caeb44564d87ed1f84aba to your computer and use it in GitHub Desktop.
Save leonkorteweg/18ac8191b35caeb44564d87ed1f84aba to your computer and use it in GitHub Desktop.
WordPress - display hooked functions
<?php
function hooked_functions( $name = "" ) {
global $wp_filter;
if( $name != "" )
var_export( $wp_filter[$name] );
else
var_export( $wp_filter );
}
// Example
hooked_functions( 'admin_init' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment