Skip to content

Instantly share code, notes, and snippets.

@cstrouse
Created November 8, 2019 20:30
Show Gist options
  • Save cstrouse/d750541bb8377744844032718c177083 to your computer and use it in GitHub Desktop.
Save cstrouse/d750541bb8377744844032718c177083 to your computer and use it in GitHub Desktop.
function print_filters_for( $hook = '' ) {
global $wp_filter;
if( empty( $hook ) || !isset( $wp_filter[$hook] ) )
return;
print '<pre>';
print_r( $wp_filter[$hook] );
print '</pre>';
}
print_filters_for('the_content');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment