Skip to content

Instantly share code, notes, and snippets.

@EmranAhmed
Last active August 29, 2015 13:57
Show Gist options
  • Save EmranAhmed/9518024 to your computer and use it in GitHub Desktop.
Save EmranAhmed/9518024 to your computer and use it in GitHub Desktop.
Getting All WordPress Actions and Filters
<?php
function print_all_wp_actions() {
global $wp_actions;
echo 'all WordPress actions: <pre>';
print_r( $wp_actions );
echo '</pre>';
}
function print_all_wp_filters() {
global $wp_filter;
echo 'all WordPress filters: <pre>';
print_r( $wp_filter );
echo '</pre>';
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment