Is there any way to know what functions are added to actions on a certain page in WordPress?
|
There is a magic action I have written a small plugin T5 Debug Hook to see all functions for one hook:
To get a list of all available actions on a page try this:
|
||||
|
|
|
WordPress holds current state of hook information in global There is some helper code floating around, mine is R_Debug::list_hooks(). |
|||
|
|
|
As Rarst has pointed out, when callbacks are hooked onto actions/filters they are added to the See my answer to this question. Or the GitHub gist that resulted from it. Alternatively you might like to use this plug-in, which adds a search to the admin bar of admin users, that allows you to search for hooks that have been called on that page. Selecting a hook displays a dialog with functions that have were hooked onto that action/filter:
|
|||
|
|
