Get list of available wordpress actions

I’d just like to point out that that is, by no means, anywhere NEAR a complete list. According to adambrown.info, there are 595 actions and 970 filters in wordpress 3.3…and that’s just by default, not including hooks added by your plugins.

You might be able to do something with global $wp_actions or global $wp_filters, depending on what you’re trying to do, but those are dynamically generated and only contain the actions done for the page that was loaded (as best I can tell).

Short answer: probably not.

Leave a Comment