Skip to content

Instantly share code, notes, and snippets.

@alexanderdejong
Created September 13, 2018 15:32
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 alexanderdejong/01e1fca8e5dc5bfd12312092bf3aa5fe to your computer and use it in GitHub Desktop.
Save alexanderdejong/01e1fca8e5dc5bfd12312092bf3aa5fe to your computer and use it in GitHub Desktop.
/**
** Check what else is hooking into the_content();
**
**/
add_action('template_redirect', 'wpse_44152_template_redirect');
function wpse_44152_template_redirect(){
global $wp_filter;
print_r($wp_filter['the_content']);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment