Created
October 9, 2011 15:05
-
-
Save studiograsshopper/1273784 to your computer and use it in GitHub Desktop.
WP Dump all filters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
add_action( 'all', create_function( '', 'var_dump( current_filter() );' ) ); |
Got this off the wp-hackers list. Viperbond, perhaps, who posted it?
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Place in functions.php and dump all active filters for that page load. Warning - it can be a very long list!