-
Notifications
You must be signed in to change notification settings - Fork 79
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Parse which functions are hooked to which hooks #87
Comments
If you don't already have a design for this then you may want to look at the solution that I developed for my own code. If you've got time start here... http://rowlandscastlewebdesign.com/phphants/ Note: My solution requires two passes in order for the call trees to be populated. |
Just to let you know that I have updated my solution to work with PHP classes and methods and am currently in the process of comparing my results with that of WP-Parser. |
@bobbingwide thank you for looking into it! Hadn't checked out your solution yet, but I think we are mostly done with bugs/blockers in Parser and will be moving on to enhancements stuff next. |
I keep on having to manually search the WP codebase as there are a few places where the content is modified. It would be really nice to have a list of "Modified by" functions. The main list of modifications could be found in https://github.com/WordPress/WordPress/blob/master/wp-includes/default-filters.php |
This would be amazing. For example; https://developer.wordpress.org/reference/hooks/authenticate/ lists the default hooked functions, but it's not linked in any way in the data (ie. uses). |
I don't think there are any tickets open for this, but I believe it may have been mentioned somewhere. We should parse
add_action()
andadd_filter()
calls and export of list of which functions are hooked to which actions/filters.The text was updated successfully, but these errors were encountered: